1
0
forked from wrenn/wrenn
Files
2026-04-21 15:54:04 +06:00

11 lines
255 B
Go

// Package migrations embeds the SQL migration files so that external modules
// (such as the cloud edition) can access them programmatically.
package migrations
import "embed"
// FS contains all SQL migration files.
//
//go:embed *.sql
var FS embed.FS