diff --git a/Interlace/interlace.py b/Interlace/interlace.py new file mode 100644 index 0000000..0f2dac8 --- /dev/null +++ b/Interlace/interlace.py @@ -0,0 +1,11 @@ +#!/usr/bin/python3 +import sys +from lib.core.input import InputParser + +def main(): + parser = InputParser() + arguments = parser.parse(sys.argv[1:]) + + +if __name__ == "__main__": + main() \ No newline at end of file