Files
xinfra/authserver/internal/database/seed.go
T
2026-07-13 14:39:56 +08:00

12 lines
146 B
Go

package database
import (
"authserver/internal/config"
"gorm.io/gorm"
)
func SeedDefaults(_ *gorm.DB, _ config.Config) error {
return nil
}