1 2 3 4 5 6 7 8
package main func NewFruits() *Fruits { x := new(Fruits) x.Uuid = "test" x.Version = "v0.0.2" return x }