mrmp/__init__.py
Marc Beninca 80e76995a5 arguments
2023-01-28 21:19:16 +01:00

45 lines
707 B
Python
Executable file

#! /usr/bin/env python3
import sys
import arguments
import local
import synchronization
def build():
# TODO identify
print('TODO identify')
# TODO extract
print('TODO extract')
# TODO apply
print('TODO apply')
# TODO archive
print('TODO archive')
def check():
# TODO prepare threads
print('TODO prepare threads')
# TODO run threads
print('TODO run threads')
# TODO watch threads
print('TODO watch threads')
def info():
print(local.Local())
def sync():
sync = synchronization.Synchronization()
print(sync)
sync.run()
def main():
getattr(sys.modules[__name__], arguments.action)()
if __name__ == '__main__':
main()