In Go: - getters are named as the field name - setters are named as the field name prefixed with Set The plugin should support the "Generate" action for Getters, Setters and Getters and Setters actions. Example: ``` go package main type demo struct { help string } func (d *demo) Help() string { return d.help } func (d *demo) SetHelp(help string) { d.help = help } func main() { a := &demo{"Help"} _ = a } ```