#!/usr/bin/env python

from bcst.args import args
from bcst.resource import Resource
from bcst.theme import Theme

res=Resource(args.resource)
t=Theme("default",res.json)
t.deploy(args.destination)
