diff --git a/tldp/driver.py b/tldp/driver.py new file mode 100644 index 0000000..c989772 --- /dev/null +++ b/tldp/driver.py @@ -0,0 +1,27 @@ +#! /usr/bin/python +# -*- coding: utf8 -*- + +from __future__ import absolute_import, division, print_function + +import sys + +from .config import collectconfiguration + + +def list(config): + pass + + +def status(config): + pass + + +def build(config): + pass + + +def publish(config): + pass + +# +# -- end of file