blob: 5ddbe7176e44b8d8d0f5eb525115411c7476b6d7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env python
import cli.main
import os
import sys
bin_dir = os.path.dirname(os.path.realpath(__file__))
try:
cli.main.main(bin_dir)
except KeyboardInterrupt:
sys.exit(1)
|