2023-12-02 23:12:37 +07:00

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,
}
}