12 lines
171 B
Python
Executable File
12 lines
171 B
Python
Executable File
#!/usr/bin/env python3
|
|
import sys
|
|
from wilty import Wilty
|
|
|
|
|
|
def main(args):
|
|
app = Wilty()
|
|
app.mapCommands(args)
|
|
|
|
if __name__ == "__main__":
|
|
main(sys.argv[1:])
|