diff options
Diffstat (limited to 'src/bcst.py')
| -rwxr-xr-x | src/bcst.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/bcst.py b/src/bcst.py new file mode 100755 index 0000000..850fbdb --- /dev/null +++ b/src/bcst.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python + +from args import args +from resource import Resource +from theme import Theme + + +res=Resource(args.resource) +t=Theme("themes/default",res.json) + +t.deploy(args.destination) |
