File size: 206 Bytes
d2c5913
 
 
 
37d5f61
d2c5913
 
 
37d5f61
 
d2c5913
1
2
3
4
5
6
7
8
9
10
11
12
"""
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())