Messaging/pkg/internal/models/realms.go
2024-09-17 16:52:42 +08:00

12 lines
267 B
Go

package models
import "git.solsynth.dev/hydrogen/dealer/pkg/hyper"
// Realm profiles basically fetched from Hydrogen.Passport
// But cache at here for better usage and database relations
type Realm struct {
hyper.BaseRealm
Channels []Channel `json:"channels"`
}