package
Version:
v0.1.5
Opens a new window with list of versions in this module.
Published: Jul 11, 2023
License: MIT
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Category struct {
Id int32 `json:"id"`
Name string `json:"name,omitempty"`
}
type Post struct {
Id int32 `json:"id"`
Name string `json:"name,omitempty"`
Author *User `json:"author,omitempty"`
Categories []*Category `json:"categories"`
Tags []*Tag `json:"tags"`
}
type Tag struct {
Id int32 `json:"id"`
Name string `json:"name,omitempty"`
}
type User struct {
Id int32 `json:"id"`
Name string `json:"name,omitempty"`
Posts []*Post `json:"posts"`
}
Source Files
¶
Directories
¶
Click to show internal directories.
Click to hide internal directories.