package storage type Storager interface{} type storage struct{} func New() Storager { return &storage{} }