Tôi không thể tìm ra cách khởi tạo một cấu trúc lồng nhau. Tìm ví dụ tại đây: http://play.golang.org/p/NL6VXdHrjh
package main
type Configuration struct {
Val string
Proxy struct {
Address string
Port string
}
}
func main() {
c := &Configuration{
Val: "test",
Proxy: {
Address: "addr",
Port: "80",
},
}
}