forked from goffee/cup
22 lines
644 B
Go
22 lines
644 B
Go
|
// 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,
|
||
|
}
|
||
|
}
|