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