8 lines
151 B
Python
8 lines
151 B
Python
|
|
# retoor <retoor@molodetz.nl>
|
||
|
|
|
||
|
|
import uvicorn
|
||
|
|
|
||
|
|
from typosaurus_sandbox.app import App
|
||
|
|
|
||
|
|
uvicorn.run(App, host="127.0.0.1", port=8000, log_level="info")
|