qcs-python/main.py

13 lines
278 B
Python
Raw Normal View History

2023-04-30 22:13:02 +00:00
import json
import logging
# The entire config object with all defaults
config = {
"api" : "https://oboy.smilebasicsource.com/api"
}
def main():
print("Program start")
logging.debug("Config: " + json.dumps(config, indent = 2))
print("Program end")