countapi/app/config.py

11 lines
245 B
Python
Raw Normal View History

2020-07-30 16:28:42 +03:00
from pydantic import BaseSettings
class Settings(BaseSettings):
app_name: str = "CountAPI"
ttlsetting: int = 100000
redishost: str = '192.168.25.12'
port: int = 6379
db: int = 0
redispass: str = ""
settings = Settings()