8 lines
166 B
Python
8 lines
166 B
Python
|
if __name__ == '__main__':
|
||
|
import os
|
||
|
import sys
|
||
|
sys.path.append(os.path.dirname(os.path.dirname(__file__)))
|
||
|
#
|
||
|
import lsgm
|
||
|
lsgm.main(__file__)
|