1
0
mirror of https://github.com/dutchcoders/transfer.sh.git synced 2020-11-18 19:53:40 -08:00

ISSUE-223

This commit is contained in:
Andrea Spacca 2019-05-11 15:12:38 +02:00
parent 415d23393d
commit a4e4cafc30
2 changed files with 2 additions and 1 deletions

1
go.mod
View File

@ -31,6 +31,7 @@ require (
golang.org/x/oauth2 v0.0.0-20190402181905-9f3314589c9a golang.org/x/oauth2 v0.0.0-20190402181905-9f3314589c9a
google.golang.org/api v0.5.0 google.golang.org/api v0.5.0
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127
gopkg.in/russross/blackfriday.v2 v2.0.1
) )
replace gopkg.in/russross/blackfriday.v2 v2.0.1 => github.com/russross/blackfriday/v2 v2.0.1 replace gopkg.in/russross/blackfriday.v2 v2.0.1 => github.com/russross/blackfriday/v2 v2.0.1

View File

@ -35,7 +35,7 @@ import (
"encoding/json" "encoding/json"
"errors" "errors"
"fmt" "fmt"
"github.com/russross/blackfriday/v2" blackfriday "gopkg.in/russross/blackfriday.v2"
"html" "html"
html_template "html/template" html_template "html/template"
"io" "io"