Download the latest asset from Github
This commit is contained in:
parent
c32449e465
commit
b56d8e72ca
11 changed files with 283 additions and 2 deletions
8
majordome/settings.py
Normal file
8
majordome/settings.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
from pydantic_settings import BaseSettings, SettingsConfigDict
|
||||
from pydantic import Field
|
||||
|
||||
|
||||
class GithubSettings(BaseSettings):
|
||||
model_config = SettingsConfigDict(env_prefix="github_", env_file=".env")
|
||||
|
||||
token: str = Field(default="")
|
Loading…
Add table
Add a link
Reference in a new issue