Files
atom/contracts/seeder.go
2023-01-29 17:56:51 +08:00

11 lines
142 B
Go

package contracts
import "gorm.io/gorm"
// Migration route interface
type Seeder interface {
Times() uint
Table() string
Run(*gorm.DB)
}