14 lines
206 B
Python
14 lines
206 B
Python
import datetime
|
|
import logging
|
|
import os
|
|
|
|
from fastapi import FastAPI
|
|
|
|
from.routers_v2 import current
|
|
|
|
app = FastAPI(
|
|
responses={404: {'description': 'Not found'}}
|
|
)
|
|
|
|
app.include_router(current.router)
|