浏览代码

merged to module version

Klaas, Wilfried 5 年之前
父节点
当前提交
51b956c7f2
共有 4 个文件被更改,包括 9 次插入0 次删除
  1. 1 0
      .gitignore
  2. 4 0
      .vscode/settings.json
  3. 1 0
      GoHash.go
  4. 3 0
      go.mod

+ 1 - 0
.gitignore

@@ -2,3 +2,4 @@
 *.exe
 pkg
 src/github.com
+__debug_bin

+ 4 - 0
.vscode/settings.json

@@ -0,0 +1,4 @@
+{
+    "go.inferGopath": false,
+    "go.gopath": "E:\\daten\\git-sourcen\\GoHash"
+}

+ 1 - 0
GoHash.go

@@ -15,6 +15,7 @@ import (
 	"sync"
 )
 
+// Fdhashes struct for holding all informations about one folder.
 type Fdhashes struct {
 	Path   string
 	Hashes map[string]string

+ 3 - 0
go.mod

@@ -0,0 +1,3 @@
+module github.com/willie/gohash
+
+go 1.12