How do I add a Create method to a struct?
type MyStruct struct { func Create() { // code... } }
type MyStruct struct { } func (s MyStruct) Create() { // code... }
type MyStruct struct { } func Create(self MyStruct) { // code... }
type MyStruct struct { } def (s MyStruct) Create() { // code... }