mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-04 18:59:08 +01:00
10 lines
210 B
Go
10 lines
210 B
Go
|
// provides the io/fs for DB migrations
|
||
|
package db
|
||
|
|
||
|
import "embed"
|
||
|
|
||
|
// since embeds must be relative to the package directory, this source file is required
|
||
|
|
||
|
//go:embed migrations/*.sql
|
||
|
var MigrationFS embed.FS
|