Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Country ¶
type Country struct {
Code string `json:"code" sql:"country_code"`
Name string `json:"name,omitempty" sql:"country_name"`
Phonenumbers []*Phonenumber `json:"phonenumbers,omitempty"`
}
Country is the struct that define the return of the database and the formated JSON output
type Phonenumber ¶
type Phonenumber struct {
Category string `json:"category" sql:"category_name"`
Phonenumber string `json:"number" sql:"phone_number"`
Country string `json:"-" sql:"country_code"`
}
Phonenumber is the struct that define the return of the database and the formated JSON output
Click to show internal directories.
Click to hide internal directories.