migrate/log.go

7 lines
100 B
Go

package migrate
type Logger interface {
Printf(format string, v ...interface{})
Verbose() bool
}