linstrom/storage/errors.go
2024-08-28 17:20:38 +02:00

7 lines
130 B
Go

package storage
type NotImplementedError struct{}
func (n NotImplementedError) Error() string {
return "Not implemented yet"
}