From 40fae980d30b8c1b51b9beca74adabdad9611581 Mon Sep 17 00:00:00 2001 From: Michael Skelton Date: Tue, 23 Oct 2018 20:13:31 +1000 Subject: [PATCH] Input base --- Interlace/interlace.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Interlace/interlace.py 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