aboutsummaryrefslogtreecommitdiff
path: root/win/show.py
blob: 111c965e3cfac8ca5c5b9ca8d8c2046c6f64a95a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
from wb import get_config, get_build_params
from js import JSON

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

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