R/run_app.R

Defines functions run_app

Documented in run_app

#' Run the application
#'
#' @param ... A series of options to be used inside the app.
#'
#' @export
run_app <- function(...) {
  golem::with_golem_options(
    app = shiny::shinyApp(
      ui = app_ui,
      server = app_server
    ),
    golem_opts = list(...)
  )
}
paithiov909/shaketoba documentation built on Dec. 22, 2021, 5:25 a.m.