aboutsummaryrefslogtreecommitdiff
path: root/src/bcst.py
blob: 850fbdb3642e67d9fb2d8b88a4441b6a27eecb37 (plain)
1
2
3
4
5
6
7
8
9
10
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)