blob: 429aa1aa5b04d320fba2cff65b68d165862007ee (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import structlog
from fastapi import FastAPI
app = FastAPI(
servers=[{"url": "https://kennel.hatecomputers.club", "description": "prod"}]
)
logger = structlog.get_logger()
|