// // cache.go // Copyright (C) 2022 tiglog // // Distributed under terms of the MIT license. // package gcache type Engine struct { ICacheAdapter } func New(adapter ICacheAdapter) *Engine { return &Engine{adapter} }