feat: updated pkg implementations

This commit is contained in:
David Allen 2025-08-24 20:40:53 -06:00
parent 86f37555b2
commit 8b161135ff
Signed by: towk
GPG key ID: 0430CDBE22619155
10 changed files with 579 additions and 140 deletions

View file

@ -2,10 +2,22 @@ package storage
type DiskStorage struct{}
func (ds *DiskStorage) Read(k string) error {
func (ds DiskStorage) Init() error {
return nil
}
func (ms *DiskStorage) Write(k string, v any) error {
func (ds DiskStorage) Cleanup() error {
return nil
}
func (ds DiskStorage) Get(k string) error {
return nil
}
func (ds DiskStorage) Set(k string, v any) error {
return nil
}
func (ds DiskStorage) GetData() any {
return nil
}