R/launch_app.R

#' Lauch the shiny app
#'
#'  Opens a shiny app capable of retrieving Lending Club account data and to
#'  execute transactions.
#' @export
#' @param x your LC credential
#' @param ... pass additional arguments to shiny::runApp
launch_app <- function(x, ...) {
    shiny::runApp(system.file("application", package = "LendingClubAccess"),
                  display.mode = "normal",
                  ...)
    }
kuhnrl30/LendingClubAccess documentation built on May 8, 2019, 1:36 a.m.