summaryrefslogtreecommitdiff
path: root/win/show.py
blob: ac56e98d1b87109d84bd22512467d34ffcf236b5 (plain)
1
2
3
4
5
6
7
8
9
from wb import get_config
from js import JSON

def main():
    print JSON().encode(get_config())

# if we are run directly, and not loaded as a module
if __name__ == "__main__":
    main()