1
0
Fork 0
forked from goffee/cup
cup/config/cache.go

22 lines
644 B
Go
Raw Permalink Normal View History

2024-09-12 19:15:38 -04:00
// Copyright 2023 Harran Ali <harran.m@gmail.com>. All rights reserved.
// Copyright (c) 2024 Zeni Kim <zenik@smarteching.com>
// Use of this source code is governed by MIT-style
// license that can be found in the LICENSE file.
package config
import "git.smarteching.com/goffee/core"
// Retrieve the main config for the cache
func GetCacheConfig() core.CacheConfig {
//#####################################
//# Main configuration for cache #####
//#####################################
return core.CacheConfig{
// For enabling and disabling the cache
// set to true to enable it, set to false to disable
EnableCache: true,
}
}