This commit is contained in:
Ken-Håvard Lieng 2015-12-11 04:35:48 +01:00
parent a45833e281
commit eeb45e17c2
576 changed files with 1289 additions and 1289 deletions

View file

@ -4,8 +4,8 @@ import (
"log"
"strings"
"github.com/khlieng/name_pending/irc"
"github.com/khlieng/name_pending/storage"
"github.com/khlieng/dispatch/irc"
"github.com/khlieng/dispatch/storage"
)
type ircHandler struct {

View file

@ -7,10 +7,10 @@ import (
"path"
"testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/stretchr/testify/assert"
"github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/stretchr/testify/assert"
"github.com/khlieng/name_pending/irc"
"github.com/khlieng/name_pending/storage"
"github.com/khlieng/dispatch/irc"
"github.com/khlieng/dispatch/storage"
)
var user *storage.User

View file

@ -3,7 +3,7 @@ package server
import (
"encoding/json"
"github.com/khlieng/name_pending/storage"
"github.com/khlieng/dispatch/storage"
)
type WSRequest struct {

View file

@ -9,7 +9,7 @@ import (
"strings"
"time"
"github.com/khlieng/name_pending/assets"
"github.com/khlieng/dispatch/assets"
)
var files = []File{

View file

@ -6,10 +6,10 @@ import (
"strconv"
"sync"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/gorilla/websocket"
"github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/gorilla/websocket"
"github.com/khlieng/name_pending/irc"
"github.com/khlieng/name_pending/storage"
"github.com/khlieng/dispatch/irc"
"github.com/khlieng/dispatch/storage"
)
var (

View file

@ -3,8 +3,8 @@ package server
import (
"sync"
"github.com/khlieng/name_pending/irc"
"github.com/khlieng/name_pending/storage"
"github.com/khlieng/dispatch/irc"
"github.com/khlieng/dispatch/storage"
)
type Session struct {

View file

@ -3,7 +3,7 @@ package server
import (
"time"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/gorilla/websocket"
"github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/gorilla/websocket"
)
type wsConn struct {

View file

@ -5,10 +5,10 @@ import (
"log"
"strings"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/gorilla/websocket"
"github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/gorilla/websocket"
"github.com/khlieng/name_pending/irc"
"github.com/khlieng/name_pending/storage"
"github.com/khlieng/dispatch/irc"
"github.com/khlieng/dispatch/storage"
)
type wsHandler struct {