8 lines
237 B
Python
8 lines
237 B
Python
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"])
|