baxin commited on
Commit
fb57af8
·
1 Parent(s): 3f3bdea

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ from fastapi import FastAPI, UploadFile, File
2
+
3
+ app = FastAPI()
4
+
5
+
6
+ @app.post("/")
7
+ def check():
8
+ print('hello')