R/on-attach.R

Defines functions .onAttach

.onAttach <- function(libname, pkgname) {

  text = strwrap(width = getOption("width"), paste(
    "Disclaimer: trelloR is not affiliated, associated, authorized, endorsed",
    "by or in any way officially connected to Trello, Inc. (www.trello.com)."
  ))

  packageStartupMessage("R API for Trello\n", paste(text, collapse = "\n"),
                        appendLF = TRUE)
}

Try the trelloR package in your browser

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

trelloR documentation built on Aug. 28, 2023, 1:07 a.m.