Files
ai-agent/internal/migration/000001_init_schema.go
T

8 lines
105 B
Go
Raw Normal View History

2026-04-09 10:01:23 +08:00
package migration
func init() {
register(1, "init schema migration", func() error {
return nil
})
}