Nothing
# on load memoization of get functions
.onLoad <- function(libname, pkgname) {
get_meteo_from <<- memoise::memoise(
get_meteo_from, cache = cachem::cache_mem(max_size = 1024 * 1024^2, max_age = 3600*24)
)
get_stations_info_from <<- memoise::memoise(
get_stations_info_from, cache = cachem::cache_mem(max_size = 1024 * 1024^2, max_age = 3600*24)
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.