Skip to content
Permalink
master
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
executable file 17 lines (13 sloc) 361 Bytes
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import os
if hasattr(sys, "frozen"):
sys.path.append(
os.path.abspath(os.path.join(os.path.dirname(sys.executable))))
else:
sys.path.append(
os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
import fteproxy.cli
if __name__ == '__main__':
fteproxy.cli.main()