inst/hello/inst/plumber.R

#' @get /
#' @html
function(res, req) {
  language <- as.list(req$HEADERS)[["accept-language"]]
  paste0(hello::world(language, type = "string"), "\n")
}

#' @get /hello/<animal>
#' @html
function(res, req, animal) {
  paste0(hello::monde(by = animal, type = "string"), "\n")
}
reside-ic/traduire documentation built on March 25, 2023, 8:21 a.m.