2025-01-09 12:54:04 -06:00
|
|
|
package main
|
|
|
|
|
2025-01-17 02:50:36 -06:00
|
|
|
func oldNewFruits() *Fruits {
|
2025-01-09 12:54:04 -06:00
|
|
|
x := new(Fruits)
|
|
|
|
x.Uuid = "test"
|
2025-01-09 15:03:05 -06:00
|
|
|
x.Version = "v0.0.2"
|
2025-01-09 17:15:53 -06:00
|
|
|
// x.Fruits =
|
2025-01-09 12:54:04 -06:00
|
|
|
return x
|
|
|
|
}
|