Added ./bin/gtkclient

This commit is contained in:
Joar Wandborg 2013-12-16 07:38:00 +01:00
parent f2b9decf27
commit c10b6ec72e

9
bin/gtkclient Executable file
View file

@ -0,0 +1,9 @@
#! /usr/bin/env python3
import sys
sys.path.append('./')
from accounting.gtkclient import main
if __name__ == '__main__':
sys.exit(main())