linstrom/storage/errors.go

8 lines
130 B
Go
Raw Normal View History

2024-08-28 15:20:38 +00:00
package storage
type NotImplementedError struct{}
func (n NotImplementedError) Error() string {
return "Not implemented yet"
}