new Deleter interface

master
Oliver Tonnhofer 2013-06-11 10:29:21 +02:00
parent 76e2cc3949
commit 9ccd303f93
1 changed files with 4 additions and 0 deletions

View File

@ -30,6 +30,10 @@ type Finisher interface {
Finish() error
}
type Deleter interface {
Delete(string, int64) error
}
var databases map[string]func(Config, *mapping.Mapping) (DB, error)
func init() {