Various ‘macOS’-oriented Tools and Utilities
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
276 B

dsstore <- NULL
os <- NULL
.onLoad <- function(libname, pkgname) {
dsstore <<- reticulate::import_from_path(
module = "dsstore",
path = system.file("modules", package = "mactheknife"),
delay_load = TRUE
)
os <<- reticulate::import("os", delay_load = TRUE)
}