mirror of
https://github.com/Ap0dexMe0/NF-MSL.git
synced 2026-09-16 06:02:14 +02:00
6 lines
157 B
Python
6 lines
157 B
Python
from configparser import ConfigParser
|
|
|
|
def setup_config(config_file='config.ini'):
|
|
config = ConfigParser()
|
|
config.read(config_file)
|
|
return config |