add .gitignore file
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,7 @@
|
||||
from fastapi import FastAPI
|
||||
from messenger_app.api.v1.endpoints import users, messages
|
||||
|
||||
app = FastAPI()
|
||||
|
||||
app.include_router(users.router, prefix="/v1", tags=["users"])
|
||||
app.include_router(messages.router, prefix="/v1", tags=["messages"])
|
||||
Reference in New Issue
Block a user