summaryrefslogtreecommitdiff
path: root/R/app.R
blob: feb052f3d69d9e66a079716305abc7b860b48d6a (plain) (blame)
1
2
3
4
5
6
7
8
9
#' Launch the Rnaught Web Application
#'
#' @export
app <- function() {
  if (!requireNamespace("shiny", quietly = TRUE))
    stop("The package 'shiny' must be installed to launch the Rnaught web application.")

  shiny::shinyApp(ui, server)
}