nizzad/mathsadventure
0
1from src.main import app # or whatever your app is called2 3# If it's a Gradio or Streamlit app, this ensures it runs properly4if __name__ == "__main__":5 app.launch() # For Gradio6 # or7 # import streamlit as st8 # app() # If app is a Streamlit function9 