Nothing
photon_remote <- R6::R6Class(
classname = "photon_remote",
inherit = photon,
public = list(
initialize = function(url, mount = TRUE) {
assert_url(url)
private$url <- url
if (mount) self$mount()
invisible(self)
},
get_url = function() {
private$url
},
mount = function() {
assign("instance", self, envir = photon_cache())
}
),
private = list(url = NULL)
)
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.