feat: added KV storage interface

This commit is contained in:
David Allen 2025-08-19 21:33:28 -06:00
parent 4d33b12fe0
commit 5c4bbe0b58
Signed by: towk
GPG key ID: 0430CDBE22619155
3 changed files with 44 additions and 0 deletions

11
pkg/storage/disk.go Normal file
View file

@ -0,0 +1,11 @@
package storage
type DiskStorage struct{}
func (ds *DiskStorage) Read(k string) error {
return nil
}
func (ms *DiskStorage) Write(k string, v any) error {
return nil
}