12 lines
229 B
Python
Executable File
12 lines
229 B
Python
Executable File
#!/usr/bin/env python
|
|
# -*- encoding: utf-8 -*-
|
|
import sys
|
|
import os
|
|
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
|
|
|
|
import swsync.accounts
|
|
|
|
|
|
if __name__ == '__main__':
|
|
swsync.accounts.main()
|