From 2b37493971fd04d709c9e79b7990f8002041383c Mon Sep 17 00:00:00 2001 From: Maxim Lebedev Date: Wed, 29 Nov 2017 20:22:04 +0500 Subject: [PATCH] :bug: Fixed invalid fasthttp import --- helpers_updates.go | 2 +- set_webhook.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/helpers_updates.go b/helpers_updates.go index 2ef9d5f..0177ee1 100644 --- a/helpers_updates.go +++ b/helpers_updates.go @@ -5,9 +5,9 @@ import ( "log" "time" - http "github.com/erikdubbelboer/fasthttp" "github.com/kirillDanshin/dlog" json "github.com/pquerna/ffjson/ffjson" + http "github.com/valyala/fasthttp" ) type UpdatesChannel <-chan Update diff --git a/set_webhook.go b/set_webhook.go index da02209..c577f4c 100644 --- a/set_webhook.go +++ b/set_webhook.go @@ -4,8 +4,8 @@ import ( "strconv" "strings" - http "github.com/erikdubbelboer/fasthttp" json "github.com/pquerna/ffjson/ffjson" + http "github.com/valyala/fasthttp" ) const setWebhook = "setWebhook"