R/zzz.R

Defines functions .onAttach .onLoad

# Package initialization
# This file is executed when the package is loaded

.onLoad <- function(libname, pkgname) {
  # Package initialization code goes here
  # Currently no initialization needed, but this file is here for future use
  invisible()
}

#' @importFrom utils packageVersion
.onAttach <- function(libname, pkgname) {

     #Startup msgs
      #Version and URL for website
         #packageStartupMessage ("Attached: 'statuser' (Version: ",utils::packageVersion('statuser'),  ")") 
          
      #While developing:
        #packageStartupMessage(
         # "#######################################################\n",
          #                    "This Version 2026 04 17 - 06.36PM\n" )
        


  invisible()
}

Try the statuser package in your browser

Any scripts or data that you put into this service are public.

statuser documentation built on April 25, 2026, 5:06 p.m.