8 lines
151 B
Go
8 lines
151 B
Go
// Package migrations embeds SQL migration files for the preferences-api service.
|
|
package migrations
|
|
|
|
import "embed"
|
|
|
|
//go:embed *.sql
|
|
var FS embed.FS
|