feat: add meta model and test

This commit is contained in:
Noah Hsu
2022-06-16 21:59:49 +08:00
parent ca13678105
commit 52575f6ad6
7 changed files with 185 additions and 9 deletions

7
internal/store/error.go Normal file
View File

@ -0,0 +1,7 @@
package store
import "errors"
var (
ErrMetaNotFound = errors.New("meta not found")
)