Files
LazyPM/internal/storage/storage.go
Robin Olsen a3a1d71325 first commit
2026-01-31 16:00:23 +01:00

18 lines
303 B
Go

package storage
type StatisticsStorage struct {
Path string
}
func NewStatisticsStorage(path string) *StatisticsStorage {
return &StatisticsStorage{Path: path}
}
func (s *StatisticsStorage) Save(stats any) error {
return nil
}
func (s *StatisticsStorage) Load() (any, error) {
return nil, nil
}