Messaging/pkg/internal/models/realms.go

12 lines
267 B
Go
Raw Normal View History

2024-05-04 16:39:59 +00:00
package models
2024-09-11 15:58:02 +00:00
import "git.solsynth.dev/hydrogen/dealer/pkg/hyper"
2024-05-04 16:39:59 +00:00
// Realm profiles basically fetched from Hydrogen.Passport
// But cache at here for better usage and database relations
type Realm struct {
2024-09-17 08:52:42 +00:00
hyper.BaseRealm
2024-05-04 16:39:59 +00:00
2024-09-17 08:52:42 +00:00
Channels []Channel `json:"channels"`
2024-05-04 16:39:59 +00:00
}