19 lines
269 B
Python
Executable File
19 lines
269 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import os.path
|
|
import sys
|
|
|
|
|
|
def main():
|
|
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
|
|
import j2cfg
|
|
|
|
j = j2cfg.J2cfg(dump_only=True)
|
|
print(j.dump_config())
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|