R/run_app.R

Defines functions run_moduleAI

Documented in run_moduleAI

#' Run the Shiny Application
#'
#' @param ... arguments to pass to golem_opts. 
#'
#' @export
#' @importFrom shiny shinyApp
#' @importFrom golem with_golem_options 
#' 
run_moduleAI <- function(...) {
  with_golem_options(app = shinyApp(ui = app_ui,
                                    server = app_server,
                                    options = list(launch.browser = TRUE)),
                     golem_opts = list(...)
  )
  }
Viinky-Kevs/microsoftAI documentation built on April 10, 2022, 12:01 p.m.