inst/extdata/workflow/PipelineA/R/custom_mod_exports.R

#' @title xxxx
#' 
#' @description xx
#' 
#' @param id xxxx
#' @param object xxx
#' 
#' @name default_export_plugin


#' @export
#' @rdname default_export_plugin
#' 
mod_export_ui <- function(id){
  ns <- NS(id)
  tagList(
    h3('This is the custom export plugin')
  )
}

#' @export
#' @rdname default_export_plugin
#' 
mod_export_server <- function(id, object){
  moduleServer(id, function(input, output, session) {
    ns <- session$ns
    
    
    
  })
}
samWieczorek/Dapar2 documentation built on Oct. 12, 2023, 9:54 a.m.