OMOP/R/listSupportedVersions.R

9 lines
174 B
R

#' List CDM versions supported by this package
#'
#' @export
#'
listSupportedVersions <- function() {
supportedVersions <- c("5.3.1", "5.4")
return(supportedVersions)
}