some deletions
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / mod@v0.3.0 / zip / testdata / unzip / simple.txt
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/mod@v0.3.0/zip/testdata/unzip/simple.txt b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/mod@v0.3.0/zip/testdata/unzip/simple.txt
deleted file mode 100644 (file)
index c92b394..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-path=example.com/m
-version=v1.0.0
-hash=h1:tpqYOOmuilagXzyqoJ3roUjp8gneQeTv5YVpL6BG7/k=
--- example.com/m@v1.0.0/go.mod --
-module example.com/m
-
-go 1.13
--- example.com/m@v1.0.0/m.go --
-package m
-
-func Foo() int { return 42 }
--- example.com/m@v1.0.0/cmd/hello/hello.go --
-package main
-
-import (
-  "fmt"
-  "example.com/m"
-)
-
-func main() {
-  fmt.Println(m.Foo())
-}