Moew weork done
This commit is contained in:
parent
814316ab1e
commit
07d98d1ef5
10 changed files with 147 additions and 16 deletions
|
@ -1,7 +1,11 @@
|
|||
package storage
|
||||
|
||||
type NotImplementedError struct{}
|
||||
import "errors"
|
||||
|
||||
func (n NotImplementedError) Error() string {
|
||||
type ErrNotImplemented struct{}
|
||||
|
||||
func (n ErrNotImplemented) Error() string {
|
||||
return "Not implemented yet"
|
||||
}
|
||||
|
||||
var ErrEntryNotFound = errors.New("entry not found")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue