XORE21 commited on
Commit
e79654b
·
verified ·
1 Parent(s): 10c3883

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -8,6 +8,14 @@ from collections import defaultdict
8
 
9
  app = FastAPI()
10
 
 
 
 
 
 
 
 
 
11
  class Input(BaseModel):
12
  image_base64: str
13
 
 
8
 
9
  app = FastAPI()
10
 
11
+ @app.get("/")
12
+ def root():
13
+ return {
14
+ "status": "ok",
15
+ "service": "iconCaptcha solver",
16
+ "endpoint": "/solve"
17
+ }
18
+
19
  class Input(BaseModel):
20
  image_base64: str
21