File size: 240 Bytes
43b66f1
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
"""
ML Dataset & Code Generation Manager - Streamlit Application
This is the main entry point for the Streamlit application.
"""

# Import from main.py
from main import main

# Execute the main function
if __name__ == "__main__":
    main()