xorm/convert/autotimer.go

8 lines
105 B
Go
Raw Normal View History

2020-05-14 03:40:54 +00:00
package convert
import "time"
type AutoTimer interface {
AutoTime(t time.Time) (interface{}, error)
}