2023-06-17 14:42:37 +00:00
|
|
|
from shiny import App, ui
|
|
|
|
from src import mod_welcome
|
2023-06-17 14:00:36 +00:00
|
|
|
|
|
|
|
app_ui = ui.page_fluid(
|
2023-06-17 14:42:37 +00:00
|
|
|
mod_welcome.welcome_ui("welcome"),
|
2023-06-17 14:00:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def server(input, output, session):
|
2023-06-17 14:42:37 +00:00
|
|
|
mod_welcome.welcome_server()
|
2023-06-17 14:00:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
app = App(app_ui, server)
|