From 534891139a5d9735fdc83ba35048f43993de4393 Mon Sep 17 00:00:00 2001 From: Bruce Marriner Date: Sun, 22 Nov 2015 14:21:53 -0600 Subject: [PATCH] Not needed anymore. --- session.go | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 session.go diff --git a/session.go b/session.go deleted file mode 100644 index 53d7ffe..0000000 --- a/session.go +++ /dev/null @@ -1,19 +0,0 @@ -/****************************************************************************** - * A Discord API for Golang. - * - * This file has structs and functions specific to a session. - * - * A session is a single connection to Discord for a given - * user and all REST and Websock API functions exist within - * a session. - * - * See the restapi.go and wsapi.go for more information. - */ - -package discordgo - -import ( - "net" - - "github.com/gorilla/websocket" -)