package storage import ( "sync" "git.zhouxhere.com/zhouxhere/syz/store" ) type Storage struct { lock sync.Mutex store *store.Store AuthStorage OPStorage } func NewStorage(store *store.Store) *Storage { return &Storage{ store: store, } }