the structs are not marked for generation but proteus is generating a proto file with a Address message related to Address type from go code. Check below what I am doing:
package order
type Address struct {
City string
Country string
Line1 string
Line2 string
ZipCode string
State string
}
type Shipping struct {
Address *Address
Carrier string
FirstName string
LastName string
Phone string
TrackingNumber string
}
the structs are not marked for generation but proteus is generating a proto file with a Address message related to Address type from go code. Check below what I am doing:
Output after proteus execution:
Expected output:
I think that is a bug because it is working proper if the Address type is embedded in the Shipping type for example: