whackthejacker/DataHubHub
1
1"""2ML Dataset & Code Generation Manager - Streamlit Application3This is the main entry point for the Streamlit application.4"""5 6# Import from main.py7from main import main8 9# Execute the main function10if __name__ == "__main__":11 main()