agh123's picture
update the code based on data format change
d2c5913
raw
history blame contribute delete
206 Bytes
"""
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())