maze-solver/main.py
Dan Anglin 2c76beb733
Some checks failed
test / test (pull_request) Failing after 1m0s
checkpoint: add ability to regenerate the maze
2024-02-18 05:48:07 +00:00

10 lines
109 B
Python

from app import App
def main():
app = App()
app.mainloop()
if __name__ == "__main__":
main()