From 665c4def65165d436cd4f8ee8290179752827bc3 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Mon, 23 Mar 2020 19:11:16 -0700 Subject: [PATCH] go.mod: add go version This is a result of running `go mod tidy` using go 1.13.6. In my devel toolchain (vim-go -> gopls -> go 1.13), go apparently wants to add this line to go.mod, but since the modules are read-only, it fails, which leads to gopls failing, too. Signed-off-by: Kir Kolyshkin --- go.mod | 2 ++ 1 file changed, 2 insertions(+) diff --git a/go.mod b/go.mod index b05561a..d0f058a 100644 --- a/go.mod +++ b/go.mod @@ -1 +1,3 @@ module github.com/russross/blackfriday + +go 1.13