7 lines
130 B
Go
7 lines
130 B
Go
package storage
|
|
|
|
type NotImplementedError struct{}
|
|
|
|
func (n NotImplementedError) Error() string {
|
|
return "Not implemented yet"
|
|
}
|