Files
xinfra/authserver/internal/database/seed.go
T

12 lines
146 B
Go
Raw Normal View History

2026-07-13 14:39:56 +08:00
package database
import (
"authserver/internal/config"
"gorm.io/gorm"
)
func SeedDefaults(_ *gorm.DB, _ config.Config) error {
return nil
}