12 lines
152 B
Go
12 lines
152 B
Go
// +build prod
|
|
|
|
package commands
|
|
|
|
import (
|
|
"github.com/jordanknott/taskcafe/internal/migrations"
|
|
)
|
|
|
|
func init() {
|
|
migration = migrations.Migrations
|
|
}
|