mirror of
https://github.com/AtHeartEngineer/poap-reddit-bot.git
synced 2026-01-09 20:48:04 -05:00
10 lines
223 B
Python
10 lines
223 B
Python
from pydantic import BaseSettings
|
|
from typing import List, Dict
|
|
|
|
class FastAPISettings(BaseSettings):
|
|
title: str
|
|
version: str
|
|
openapi_tags: List[Dict[str, str]]
|
|
|
|
class Config:
|
|
env_prefix = 'fastapi_' |