17 lines
238 B
Python
17 lines
238 B
Python
import sys
|
|
|
|
from phasmplatform.common.config import from_toml
|
|
|
|
|
|
def main() -> int:
|
|
with open('config.toml', 'rb') as fil:
|
|
config = from_toml(fil)
|
|
|
|
del config
|
|
|
|
return 0
|
|
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main())
|