cobble/models.go

10 lines
120 B
Go
Raw Normal View History

2024-07-11 03:11:14 +00:00
package main
type MigrationHeaders struct {
Requirements []string
}
type DB interface {
2024-07-11 04:09:24 +00:00
Execute(sql string) error
2024-07-11 03:11:14 +00:00
}