MetaData Sharing
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
217 B

  1. from pydantic import BaseSettings, Field
  2. import asyncio
  3. __all__ = [ 'Settings' ]
  4. class Settings(BaseSettings):
  5. db_file: str = Field(description='path to SQLite3 database file')
  6. class Config:
  7. env_file = '.env'