Browse Source

ISSUE-223

tags/v1.1.0
Andrea Spacca 5 years ago
parent
commit
a4e4cafc30
2 changed files with 2 additions and 1 deletions
  1. +1
    -0
      go.mod
  2. +1
    -1
      server/handlers.go

+ 1
- 0
go.mod View File

@@ -31,6 +31,7 @@ require (
golang.org/x/oauth2 v0.0.0-20190402181905-9f3314589c9a
google.golang.org/api v0.5.0
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

+ 1
- 1
server/handlers.go View File

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


Loading…
Cancel
Save