6 lines
103 B
Python
6 lines
103 B
Python
|
from dotenv import load_dotenv
|
||
|
|
||
|
|
||
|
def bootstrap(envfile='./.env'):
|
||
|
load_dotenv(dotenv_path=envfile)
|