From f1076a12b67e802701e90f43efae87a792da3bf2 Mon Sep 17 00:00:00 2001 From: Ayomide Onigbinde Date: Mon, 31 Dec 2018 02:16:01 +0100 Subject: [PATCH] fix import path causing travis failed build --- examples/basic/main.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/examples/basic/main.go b/examples/basic/main.go index c8cf836..e17bc37 100644 --- a/examples/basic/main.go +++ b/examples/basic/main.go @@ -7,12 +7,10 @@ import ( "net/http" "os" "time" - - msgs "github.com/messenger" "github.com/paked/messenger" ) -var vt, acct, appsc = msgs.GetTokens() +var vt, acct, appsc = messenger.GetTokens() var ( verifyToken = flag.String("verify-token", vt, "The token used to verify facebook (required)") verify = flag.Bool("should-verify", false, "Whether or not the app should verify itself")