diff --git a/run.py b/run.py index 31bc6da..d27b7f4 100644 --- a/run.py +++ b/run.py @@ -1,6 +1,7 @@ #!/usr/bin/env python3 -from modules import core +from modules.subdirectory import core +def run(): + # Your code here + print("Core is running") -if __name__ == '__main__': - core.run()