mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-20 19:33:08 +09:00
22 lines
356 B
Python
22 lines
356 B
Python
#!/usr/bin/env python
|
|
config = {
|
|
"log_name": "test",
|
|
"log_dir": "test_logs",
|
|
"log_to_console": False,
|
|
"key1": "value1",
|
|
"key2": "value2",
|
|
"section1": {
|
|
|
|
"subsection1": {
|
|
"key1": "value1",
|
|
"key2": "value2"
|
|
},
|
|
|
|
"subsection2": {
|
|
"key1": "value1",
|
|
"key2": "value2"
|
|
},
|
|
|
|
},
|
|
"opt_override": "some stuff",
|
|
}
|