BoxzDev commited on
Commit
b4ad547
·
verified ·
1 Parent(s): dca1af7

Create Sebari-chan is online

Browse files
Files changed (1) hide show
  1. Sebari-chan is online +7 -0
Sebari-chan is online ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ from fastapi import FastAPI
2
+
3
+ app = FastAPI()
4
+
5
+ @app.get("/")
6
+ async def root():
7
+ return {"message": "Sebari-chan is online"}