10 lines
125 B
Go
10 lines
125 B
Go
|
package main
|
||
|
|
||
|
func NewFruits() *Fruits {
|
||
|
x := new(Fruits)
|
||
|
x.Uuid = "test"
|
||
|
x.Version = "v0.0.2"
|
||
|
// x.Fruits =
|
||
|
return x
|
||
|
}
|