I have a user message as such :
message User {
string uid = 1;
}
Protobuff generates a struct as such
type User struct {
Uid string
}
Is there a way to enforce destination case so that my user struct in Go would be like :
type User struct {
UID string
}
So far, I can use string uID in my proto definition but it feels a bit hacky.