15 lines
190 B
Go
15 lines
190 B
Go
package models
|
|
|
|
func All() []interface{} {
|
|
return []interface{}{
|
|
&User{},
|
|
&Server{},
|
|
&ServerUser{},
|
|
&Category{},
|
|
&Channel{},
|
|
&ChannelUser{},
|
|
&Message{},
|
|
&Attachment{},
|
|
}
|
|
}
|