From b894fe625dca2845e0d80a2fbd605abda192cf7c Mon Sep 17 00:00:00 2001 From: Vaishnavi karmegam <152015064+vaishnavikarmegam05@users.noreply.github.com> Date: Thu, 15 Aug 2024 23:17:20 +0530 Subject: [PATCH] Update run.py --- run.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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()