summaryrefslogtreecommitdiff
path: root/example/fruit.New.go
blob: 6d32ded5e790e9eea9e325e61466322e505625a6 (plain)
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
}