summaryrefslogtreecommitdiff
path: root/module.go
diff options
context:
space:
mode:
Diffstat (limited to 'module.go')
-rw-r--r--module.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/module.go b/module.go
new file mode 100644
index 0000000..7370452
--- /dev/null
+++ b/module.go
@@ -0,0 +1,6 @@
+package main
+
+// Module is the interface for you to extend what your bar does.
+type Module interface {
+ GetInfo() (string, error)
+}