feat: seed default dataset sources

This commit is contained in:
2026-07-23 15:14:31 +08:00
parent 26dd3004a1
commit b053c3874a
12 changed files with 183 additions and 9 deletions

View File

@@ -8,6 +8,9 @@ func New(database *gorm.DB) error {
if err := InitUser(tx); err != nil {
return err
}
if err := InitDataset(tx); err != nil {
return err
}
return InitExpert(tx)
})
}