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