import streamlit as st | |
pages = { | |
"Apps": [ | |
st.Page("apps/database_page.py", title="Generate Databases"), | |
st.Page("apps/core_dump_page.py", title="Check dump core"), | |
st.Page("apps/import_physical_db.py", title="Physical Database Management"), | |
], | |
"Documentations": [ | |
st.Page("documentations/database_doc.py", title="Databases Documentation"), | |
st.Page("documentations/core_dump_doc.py", title="Dump core Documentation"), | |
], | |
} | |
pg = st.navigation(pages) | |
pg.run() | |