summaryrefslogtreecommitdiffstats
path: root/win/show.py
blob: cc417159c6c5afce527c6b99e8ca6b60cd38ba39 (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()