ubigen/R/app.R

9 lines
184 B
R
Raw Normal View History

2022-05-07 17:54:23 +02:00
#' Run the application server.
#'
#' @param port The port to serve the application on.
#'
#' @export
run_app <- function(port = 3464) {
runApp(shinyApp(ui, server), port = port)
}