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_00_header_server("00_header_1")
  mod_markdown_example_server("markdown_example_1")
  mod_chart_example_server("chart_example_1")
  mod_table_from_mongo_server("table_example_1", creds = ".mongo-credentials")
  mod_table_from_mongo_server("table_example_2")
  mod_99_footer_server("99_footer_1")
}
MarkMc1089/mongo2shiny documentation built on Dec. 17, 2021, 3:13 a.m.