// // storage.go // Copyright (C) 2022 tiglog // // Distributed under terms of the MIT license. // package storage type Engine struct { IStorageAdapter } func NewStorage(adapter IStorageAdapter) *Engine { return &Engine{adapter} }