mirror of
https://github.com/certd/certd.git
synced 2026-04-23 03:27:25 +08:00
34 lines
295 B
JavaScript
34 lines
295 B
JavaScript
export class Store {
|
|
set (key, value) {
|
|
|
|
}
|
|
|
|
get (key) {
|
|
|
|
}
|
|
|
|
buildKey (...keyItem) {
|
|
|
|
}
|
|
|
|
linkExists (linkPath) {
|
|
|
|
}
|
|
|
|
link (targetPath, linkPath) {
|
|
|
|
}
|
|
|
|
unlink (linkPath) {
|
|
|
|
}
|
|
|
|
/**
|
|
* 全路径
|
|
* @param key
|
|
*/
|
|
getActualKey (key) {
|
|
// return 前缀+key
|
|
}
|
|
}
|