R/locate.R

Defines functions locate

Documented in locate

#' Run the Shiny Application
#'
#' @export
#' @importFrom shiny shinyApp
locate <- function(...) {
  with_golem_options <-   function(app, golem_opts){
    app$appOptions$golem_options <- golem_opts
    app
  }
  with_golem_options(
    app = shinyApp(ui = app_ui, server = app_server), 
    golem_opts = list(...)
  )
}
VincentGuyader/locate documentation built on Dec. 18, 2019, 2:54 a.m.