You've already forked Travel-Agent
init: Initial project setup
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
__all__ = ("Config",)
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
load_dotenv()
|
||||
|
||||
|
||||
class Config:
|
||||
BOT_TOKEN = os.getenv("BOT_TOKEN")
|
||||
SQLALCHEMY_DATABASE_URI = os.getenv("SQLALCHEMY_DATABASE_URI")
|
||||
Reference in New Issue
Block a user