scythe410's picture
chore: scaffold bun-workspaces monorepo
9a3eee2
Raw
History Blame Contribute Delete
190 Bytes
import uvicorn
def main() -> None:
uvicorn.run(
"app.main:app",
host="127.0.0.1",
port=8000,
reload=True,
)
if __name__ == "__main__":
main()