Source code for webinterface.Home

"""Proteobench Streamlit-based web server."""

from _base import StreamlitPage


[docs] class StreamlitPageHome(StreamlitPage): """ This class sets up the main page layout for the Streamlit application. """ def _main_page(self): """ Set up the main page layout for the Streamlit application. """ pass
if __name__ == "__main__": StreamlitPageHome()