mirror of
https://github.com/wassname/sloth.git
synced 2026-07-16 11:21:45 +08:00
12 lines
252 B
Python
Executable File
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)
|
|
|