initial commit
This commit is contained in:
commit
f48fa210bb
49 changed files with 4058 additions and 0 deletions
8
pkg/store/marshal.go
Normal file
8
pkg/store/marshal.go
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
// Copyright (C) 2022 Marius Schellenberger
|
||||
|
||||
package store
|
||||
|
||||
type Marshaler interface {
|
||||
Marshal(v interface{}) ([]byte, error)
|
||||
Unmarshal(data []byte, v interface{}) error
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue