Initial commit
This commit is contained in:
14
src/ploc/ploc_app.py
Normal file
14
src/ploc/ploc_app.py
Normal file
@@ -0,0 +1,14 @@
|
||||
import argparse
|
||||
from ploc.io.image import Image
|
||||
|
||||
|
||||
def main():
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument("image", type=str, help="Image file to process")
|
||||
args = parser.parse_args()
|
||||
|
||||
print("Hello World")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user