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

    session$onSessionEnded(function() {
        shiny::stopApp()
    })
}
hfshr/shiny-vue3-r documentation built on Jan. 15, 2022, 8:11 a.m.