blob: b89c9fbb552a052fe61df19d14ea0be0604adb0f [file] [log] [blame]
namespace Casbin.Caching;
public interface IGFunctionCachePool
{
public IGFunctionCache GetCache(string roleType);
public void Clear(string roleType);
}