ソースを参照

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