Shiny-App / app.py
Hermit11's picture
Upload 5 files
1b575c8 verified
raw
history blame
149 Bytes
from shiny import App
from ui import create_ui
from server import create_server
# Create the Shiny app
app = App(create_ui(), create_server())