8 lines
88 B
Go
8 lines
88 B
Go
|
package main
|
||
|
|
||
|
func NewFruits() *Fruits {
|
||
|
x := new(Fruits)
|
||
|
x.Uuid = "test"
|
||
|
return x
|
||
|
}
|