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 ) {
  # Your application server logic 
  mod_faithful_histogram_server("hist-waiting", variable = "waiting")
  mod_faithful_histogram_server("hist-eruptions", variable = "eruptions")
}
guidomaggioorg/ShinyProdWorkshopPublic documentation built on Feb. 18, 2022, 1:49 a.m.