From 34cce1bb0dcfc0df36ec96933892a167e0266903 Mon Sep 17 00:00:00 2001 From: 178inaba <178inaba@users.noreply.github.com> Date: Mon, 24 Apr 2017 13:57:12 +0900 Subject: [PATCH] Remove websocket.Dialer from Client --- mastodon.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/mastodon.go b/mastodon.go index 594d16a..16ccb08 100644 --- a/mastodon.go +++ b/mastodon.go @@ -13,8 +13,6 @@ import ( "path/filepath" "strings" "time" - - "github.com/gorilla/websocket" ) // Config is a setting for access mastodon APIs. @@ -28,7 +26,6 @@ type Config struct { // Client is a API client for mastodon. type Client struct { http.Client - websocket.Dialer config *Config interval time.Duration }