mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2025-05-22 18:21:18 +00:00
6 lines
138 B
Python
6 lines
138 B
Python
from fastapi import FastAPI
|
|
import uvicorn
|
|
|
|
if __name__ == "__main__":
|
|
app = FastAPI()
|
|
uvicorn.run(app, host="0.0.0.0", port=8080) |