20 lines
403 B
Go
20 lines
403 B
Go
package cache
|
|
|
|
import (
|
|
"github.com/pojntfx/stfs/pkg/config"
|
|
)
|
|
|
|
const (
|
|
FileSystemCacheTypeMemory = "memory"
|
|
FileSystemCacheTypeDir = "dir"
|
|
|
|
WriteCacheTypeMemory = "memory"
|
|
WriteCacheTypeFile = "file"
|
|
)
|
|
|
|
var (
|
|
KnownFileSystemCacheTypes = []string{config.NoneKey, FileSystemCacheTypeMemory, FileSystemCacheTypeDir}
|
|
|
|
KnownWriteCacheTypes = []string{WriteCacheTypeMemory, WriteCacheTypeFile}
|
|
)
|