jonathanjordan21 commited on
Commit
04adfa1
·
verified ·
1 Parent(s): 173a13e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -1,6 +1,8 @@
1
  from fastapi import FastAPI
2
  from pydantic import BaseModel
3
 
 
 
4
  # Define the ticket schema using Pydantic
5
  class Ticket(BaseModel):
6
  name: str
 
1
  from fastapi import FastAPI
2
  from pydantic import BaseModel
3
 
4
+ app = FastAPI()
5
+
6
  # Define the ticket schema using Pydantic
7
  class Ticket(BaseModel):
8
  name: str