// Copyright 2023 Harran Ali . All rights reserved. // Copyright (c) 2024 Zeni Kim // 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, } }