Files
math-problems-structure/math_problems_structure/server/cli.py

10 lines
162 B
Python

import uvicorn
def main() -> None:
uvicorn.run("math_problems_structure.server.app:app", host="0.0.0.0", port=8000)
if __name__ == "__main__":
main()