owpengram-server/deploy/deploy.go
2026-06-04 01:37:39 +08:00

10 lines
353 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Package deploy 提供部署期资源(迁移脚本)的嵌入访问。
package deploy
import "embed"
// Migrations 是嵌入的 golang-migrate 迁移脚本deploy/migrations/*.sql
// 供 store/postgres 的迁移 runner 在启动时执行,避免运行时依赖外部文件路径。
//
//go:embed migrations/*.sql
var Migrations embed.FS