Add dependencies command

This commit is contained in:
Luke Murphy
2020-04-07 15:43:53 +02:00
parent 7803fa1b02
commit 86d3e19c9b
2 changed files with 55 additions and 0 deletions

View File

@ -1 +1,13 @@
#!/usr/bin/env python3
from pprint import pprint
def info(msg):
"""Info level logging output."""
pprint("-----> INFO: dokku-deploy: {}".format(msg))
def error(msg):
"""Error level logging output."""
pprint("-----> ERROR: dokku-deploy: {}".format(msg))