package
Version:
v0.0.0-...-c38eb84
Opens a new window with list of versions in this module.
Published: Nov 13, 2024
License: MIT
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Product struct {
Upc string `json:"upc"`
Reviews []*Review `json:"reviews"`
}
type Review struct {
Body string `json:"body"`
Author *User `json:"author"`
Product *Product `json:"product"`
}
type User struct {
ID string `json:"id"`
Username string `json:"username"`
Reviews []*Review `json:"reviews"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.