9 lines
127 B
Python
Executable File
9 lines
127 B
Python
Executable File
#!/usr/bin/env python3
|
|
import sys
|
|
sys.path.insert(0, "../helper_modules/")
|
|
|
|
def main():
|
|
|
|
if __name__ == "__main__":
|
|
main()
|