R/run_app.R

Defines functions run_app

Documented in run_app

#' run the Shiny Application
#'
#'
#' @export
#' @importFrom shiny shinyApp
#'
#' @examples
#'
#' if (interactive()) {
#'
#'   run_app()
#'
#' }
#'
run_app <- function() {
  addResourcePath("resources", system.file("resources", package = "clientapp"))
  shinyApp(ui = app_ui(), server = app_server)
}
ThinkR-open/clientapp documentation built on Sept. 17, 2023, 7:02 p.m.