6 lines
89 B
Python
6 lines
89 B
Python
import tomllib
|
|
|
|
|
|
with open("config.toml", "rb") as file:
|
|
config = tomllib.load(file)
|