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.
 
 

8 lines
355 B

#' Source the `knowledgeC.db` on the local system
#'
#' @param knowledgeC_location location of the `knowledgeC.db` file (defaults to "`~/Library/Application Support/Knowledge/knowledgeC.db`")
#' @export
src_knowledgeC <- function(knowledgeC_location = "~/Library/Application Support/Knowledge/knowledgeC.db") {
dplyr::src_sqlite(knowledgeC_location)
}