forked from cxykevin/sacn_accout_system
5 lines
82 B
Python
5 lines
82 B
Python
|
import tomllib
|
||
|
|
||
|
with open("config.toml", "rb") as f:
|
||
|
config = tomllib.load(f)
|