10 lines
138 B
Go
Raw Normal View History

2024-02-02 23:42:42 +08:00
package models
import "git.solsynth.dev/hydrogen/dealer/pkg/hyper"
2024-02-02 23:42:42 +08:00
type Realm struct {
hyper.BaseRealm
2024-02-02 23:42:42 +08:00
Posts []Post `json:"posts"`
2024-02-02 23:42:42 +08:00
}