Move repository to Ullaakut

This commit is contained in:
Brendan Le Glaunec
2018-02-16 15:00:27 +01:00
committed by Brendan Le Glaunec
parent 8289f1edda
commit 5a0ee4aaa7
13 changed files with 36 additions and 38 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"fmt"
"net/http"
"github.com/EtixLabs/cameradar/server/adaptor"
"github.com/Ullaakut/cameradar/server/adaptor"
)
// WebSocket manages server communication using a websocket adaptor
+1 -1
View File
@@ -1,6 +1,6 @@
package jsonrpc2
import "github.com/EtixLabs/cameradar"
import "github.com/Ullaakut/cameradar"
// http://www.jsonrpc.org/specification
const (
+1 -1
View File
@@ -3,7 +3,7 @@ package websocket
import (
"net/http"
"github.com/EtixLabs/cameradar/server/adaptor"
"github.com/Ullaakut/cameradar/server/adaptor"
"github.com/stretchr/testify/mock"
)
+1 -1
View File
@@ -5,7 +5,7 @@ import (
"net/http"
"time"
"github.com/EtixLabs/cameradar/server/adaptor"
"github.com/Ullaakut/cameradar/server/adaptor"
gorilla "github.com/gorilla/websocket"
"github.com/pkg/errors"
+5 -5
View File
@@ -5,9 +5,9 @@ import (
"net/http"
"os"
"github.com/EtixLabs/cameradar/server/actor/server"
"github.com/EtixLabs/cameradar/server/adaptor/websocket"
"github.com/EtixLabs/cameradar/server/service"
"github.com/Ullaakut/cameradar/server/actor/server"
"github.com/Ullaakut/cameradar/server/adaptor/websocket"
"github.com/Ullaakut/cameradar/server/service"
graceful "gopkg.in/tylerb/graceful.v1"
)
@@ -19,8 +19,8 @@ func main() {
server := server.New(webSocketFactory, fromClient, toClient)
_, err := service.New(
"/Users/ullaakut/Work/go/src/github.com/EtixLabs/cameradar/dictionaries/routes",
"/Users/ullaakut/Work/go/src/github.com/EtixLabs/cameradar/dictionaries/credentials.json",
"/Users/ullaakut/Work/go/src/github.com/Ullaakut/cameradar/dictionaries/routes",
"/Users/ullaakut/Work/go/src/github.com/Ullaakut/cameradar/dictionaries/credentials.json",
fromClient,
toClient,
)
+2 -2
View File
@@ -4,8 +4,8 @@ import (
"encoding/json"
"fmt"
"github.com/EtixLabs/cameradar"
"github.com/EtixLabs/cameradar/server/adaptor/jsonrpc2"
"github.com/Ullaakut/cameradar"
"github.com/Ullaakut/cameradar/server/adaptor/jsonrpc2"
v "gopkg.in/go-playground/validator.v9"
)
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"fmt"
"time"
"github.com/EtixLabs/cameradar"
"github.com/Ullaakut/cameradar"
"github.com/pkg/errors"
)