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 <kolyshkin@gmail.com>
pull/586/head
Kir Kolyshkin 2020-03-23 19:11:16 -07:00
parent 41c5fccfd6
commit 665c4def65
1 changed files with 2 additions and 0 deletions

2
go.mod
View File

@ -1 +1,3 @@
module github.com/russross/blackfriday
go 1.13