mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-25 08:26:22 +02:00
6 lines
136 B
Python
6 lines
136 B
Python
|
|
from dotenv import load_dotenv
|
||
|
|
import os
|
||
|
|
|
||
|
|
def load_environment():
|
||
|
|
"""Load environment variables from .env file"""
|
||
|
|
load_dotenv()
|