嵌套式结构体
//bad usage
type Client struct {
version int
http.Client
}
//good usage
type Client struct {
http.Client
version int
}Last updated
//bad usage
type Client struct {
version int
http.Client
}
//good usage
type Client struct {
http.Client
version int
}Last updated