mrmp/__init__.py
2023-01-28 21:19:16 +01:00

54 lines
1,008 B
Python
Executable file

#! /usr/bin/env python3
import sys
import arguments
import repository
import synchronization
def build(args):
# TODO identify
print('TODO identify')
# TODO extract
print('TODO extract')
# TODO apply
print('TODO apply')
# TODO archive
print('TODO archive')
def check(args):
# TODO prepare threads
print('TODO prepare threads')
# TODO run threads
print('TODO run threads')
# TODO watch threads
print('TODO watch threads')
def info(args):
print(repository.Repository(args))
def sync(args):
sync = synchronization.Synchronization(args)
print(sync)
# TODO prepare temporary directory
print('prepare…')
# TODO fetch
print('fetch…')
# TODO purge useless files
print('purge…')
# TODO clean temporary directory
print('clean…')
def main():
args = arguments.parse()
function = getattr(sys.modules[__name__], args[arguments.ACTION])
function(args)
if __name__ == '__main__':
main()