1
0

🐛 Fixed invalid fasthttp import

This commit is contained in:
Maxim Lebedev 2017-11-29 20:22:04 +05:00
parent 37a2001724
commit 2b37493971
No known key found for this signature in database
GPG Key ID: F8978F46FF0FFA4F
2 changed files with 2 additions and 2 deletions

View File

@ -5,9 +5,9 @@ import (
"log" "log"
"time" "time"
http "github.com/erikdubbelboer/fasthttp"
"github.com/kirillDanshin/dlog" "github.com/kirillDanshin/dlog"
json "github.com/pquerna/ffjson/ffjson" json "github.com/pquerna/ffjson/ffjson"
http "github.com/valyala/fasthttp"
) )
type UpdatesChannel <-chan Update type UpdatesChannel <-chan Update

View File

@ -4,8 +4,8 @@ import (
"strconv" "strconv"
"strings" "strings"
http "github.com/erikdubbelboer/fasthttp"
json "github.com/pquerna/ffjson/ffjson" json "github.com/pquerna/ffjson/ffjson"
http "github.com/valyala/fasthttp"
) )
const setWebhook = "setWebhook" const setWebhook = "setWebhook"