summaryrefslogtreecommitdiff
path: root/small/fruit.New.go
diff options
context:
space:
mode:
Diffstat (limited to 'small/fruit.New.go')
-rw-r--r--small/fruit.New.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/small/fruit.New.go b/small/fruit.New.go
new file mode 100644
index 0000000..0be9b07
--- /dev/null
+++ b/small/fruit.New.go
@@ -0,0 +1,9 @@
+package main
+
+func NewFruits() *Fruits {
+ x := new(Fruits)
+ x.Uuid = "test"
+ x.Version = "v0.0.2"
+ // x.Fruits =
+ return x
+}