This commit is contained in:
2025-11-14 00:34:28 +01:00
parent 340d1b69f9
commit 8acfbf1215
5 changed files with 163 additions and 25 deletions

14
models/registry.go Normal file
View File

@@ -0,0 +1,14 @@
package models
func All() []interface{} {
return []interface{}{
&User{},
&Server{},
&ServerUser{},
&Category{},
&Channel{},
&ChannelUser{},
&Message{},
&Attachment{},
}
}