Files
2023-08-23 13:29:02 -07:00

6 lines
117 B
Python

import toml
import os;
directory = os.path.dirname(__file__)
cfg = toml.load(directory + "\pkg.cfg.toml")
print(cfg)