R/run_app.R

Defines functions runApp

#' @export
runApp <- function() {
  appDir <- system.file("app", package = "TexTapience")
  if (appDir == "") {
    stop("Could not find example directory. Try re-installing `TexTapience`.", call. = FALSE)
  }

  shiny::runApp(appDir, display.mode = "normal")
}
souravbose1991/topicApp documentation built on May 7, 2019, 9:39 a.m.