R/app_server.R

Defines functions app_server

#' The application server-side
#'
#' @param input,output,session Internal parameters for {shiny}.
#'     DO NOT REMOVE.
#' @import shiny
#' @noRd
app_server <- function(input, output, session) {
  options(shiny.maxRequestSize = 10000 * 1024^2) ## file size limit
  global <- reactiveValues()
  mod_home_server("home_1")
  mod_logView_server("logView_1")
  mod_qcView_server("qcView_1", global = global)
  mod_contact_server("contact_1")
}

Try the RawHummus package in your browser

Any scripts or data that you put into this service are public.

RawHummus documentation built on April 20, 2023, 9:11 a.m.