Spaces:
Running
Running
""" | |
Main module for the frontend application. | |
This file serves as a module init file. | |
""" | |
import asyncio | |
import streamlit as st | |
from src.app import main | |
if __name__ == "__main__": | |
asyncio.run(main()) | |