mirror of
https://github.com/vondas-network/videobeaux.git
synced 2025-12-16 12:50:02 +01:00
8 lines
193 B
Python
8 lines
193 B
Python
import yaml
|
|
from pathlib import Path
|
|
|
|
config_file = Path(__file__).parent.parent / "config.yaml"
|
|
|
|
def load_config():
|
|
with open(config_file, 'r') as file:
|
|
return yaml.safe_load(file) |