R/zzz.R

Defines functions .onAttach

.onAttach <- function(...) { # nocov start
  
  suppressWarnings({
    
    poma_welcome <- "Welcome to POMA!"
    ver <- paste("Version", utils::packageVersion("POMA"))
    poma_shiny <- "POMAShiny app: https://github.com/pcastellanoescuder/POMAShiny"
    
    packageStartupMessage(paste(poma_welcome, ver, poma_shiny, sep = "\n"))
    
  })
  
} # nocov end
pcastellanoescuder/POMA documentation built on March 15, 2024, 10:08 p.m.