LaraYouThere17's picture
Intial Commit
258630d
Raw
History Blame Contribute Delete
239 Bytes
from src.ui import UserInterface
# The Main Function
def main() -> None:
# Initialising the UI
interface = UserInterface()
# Launching the Demo
interface.main_page()
# Driver Code
if __name__ == "__main__":
main()