22 lines
266 B
R
22 lines
266 B
R
box::use(
|
|
shiny[...],
|
|
bslib[...]
|
|
)
|
|
|
|
options(box.path = here::here())
|
|
box::use(
|
|
modules/db,
|
|
modules/utils,
|
|
app/forms
|
|
)
|
|
|
|
#' @export
|
|
server <- function(id, values, scheme, mhcs) {
|
|
|
|
ns <- NS(id)
|
|
|
|
moduleServer(id, function(input, output, session) {
|
|
|
|
})
|
|
}
|