Files
sloth/sloth/bin/sloth-cli
T

12 lines
252 B
Python
Executable File

#!/usr/bin/env python
import sys
from sloth.core.cli import CommandLineUtility
def execute_from_command_line(argv=None):
utility = CommandLineUtility(argv)
utility.execute()
if __name__ == "__main__":
execute_from_command_line(sys.argv)