package
Version:
v0.0.0-...-13e9ea1
Opens a new window with list of versions in this module.
Published: Mar 11, 2023
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 City struct {
Id string `json:"city_id"`
CountryId Country `json:"country_id"`
CityName string `json:"city_name"`
}
type Country struct {
Id string `json:"country_id"`
CountryName string `json:"country_name"`
}
type Customer struct {
Username string `json:"username"`
Email string `json:"email"`
Age int `json:"age"`
City City `json:"city"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.