refactor(server): merge authserver implementation

This commit is contained in:
mac
2026-07-15 14:05:22 +08:00
parent 8203beb8cd
commit 6af511ed0b
59 changed files with 176 additions and 497 deletions
+11
View File
@@ -0,0 +1,11 @@
package database
import (
"github.com/1024XEngineer/xinfra/server/internal/config"
"gorm.io/gorm"
)
func SeedDefaults(_ *gorm.DB, _ config.Config) error {
return nil
}