mirror of
https://github.com/ForFarmTeam/ForFarm.git
synced 2025-12-19 05:54:08 +01:00
11 lines
123 B
Go
11 lines
123 B
Go
package migrations
|
|
|
|
import (
|
|
"embed"
|
|
)
|
|
|
|
//go:embed *.sql
|
|
var EmbedMigrations embed.FS
|
|
|
|
const MigrationsDir = "migrations"
|