mirror of
https://github.com/makayabou/asg-server.git
synced 2026-05-02 17:43:36 +02:00
17 lines
226 B
Go
17 lines
226 B
Go
package models
|
|
|
|
import (
|
|
"embed"
|
|
|
|
"github.com/capcom6/sms-gateway/internal/infra/db"
|
|
)
|
|
|
|
//go:embed migrations
|
|
var migrations embed.FS
|
|
|
|
func GetGooseStorage() db.GooseStorage {
|
|
return db.GooseStorage{
|
|
FS: migrations,
|
|
}
|
|
}
|