commit f06760d01fdbad9025de89e6aaffc37effe1a8cd parent 1b7b69f953cdf33ec644a0463bda0be42cf9fb1a Author: MTRNord <mtrnord1@gmail.com> Date: Sat, 2 Jun 2018 09:18:00 +0200 Init VGo Diffstat:
| M | .gitignore | | | 2 | ++ |
| A | go.mod | | | 1 | + |
| A | main.go | | | 5 | +++++ |
3 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore @@ -10,3 +10,4 @@ # Output of the go coverage tool, specifically when used with LiteIDE *.out +.idea +\ No newline at end of file diff --git a/go.mod b/go.mod @@ -0,0 +1 @@ +module github.com/OpenHomeAuto/AiListener diff --git a/main.go b/main.go @@ -0,0 +1,5 @@ +package main + +func main() { + +}