mirror of
https://github.com/tcsenpai/pensieve.git
synced 2025-06-07 11:45:25 +00:00
5 lines
108 B
Python
5 lines
108 B
Python
import uvicorn
|
|
|
|
def run_server():
|
|
uvicorn.run("memos.main:app", host="0.0.0.0", port=8080, reload=True)
|