From 09e0f7243ea8c3992f436365294422e5feacb67f Mon Sep 17 00:00:00 2001 From: nxshock Date: Thu, 18 Jul 2019 19:21:54 +0500 Subject: [PATCH] Fix imports for new repo name --- backend.go | 2 +- errors.go | 2 +- handlers.go | 2 +- users.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backend.go b/backend.go index a662526..07a0d5f 100644 --- a/backend.go +++ b/backend.go @@ -1,6 +1,6 @@ package main -import "github.com/nxshock/go-lightning/matrix" +import "github.com/nxshock/signaller/matrix" type Backend interface { Register(username, password, device string) (token string, error *matrix.ApiError) diff --git a/errors.go b/errors.go index feff407..3485536 100644 --- a/errors.go +++ b/errors.go @@ -3,7 +3,7 @@ package main import ( "net/http" - "github.com/nxshock/go-lightning/matrix" + "github.com/nxshock/signaller/matrix" ) func errorResponse(w http.ResponseWriter, code matrix.ApiError, httpCode int, message string) { diff --git a/handlers.go b/handlers.go index b94be41..cdc37e1 100644 --- a/handlers.go +++ b/handlers.go @@ -8,7 +8,7 @@ import ( "strconv" "strings" - "github.com/nxshock/go-lightning/matrix" + "github.com/nxshock/signaller/matrix" ) func RootHandler(w http.ResponseWriter, r *http.Request) { diff --git a/users.go b/users.go index 50d684e..1badee5 100644 --- a/users.go +++ b/users.go @@ -6,7 +6,7 @@ import ( "os" "sync" - "github.com/nxshock/go-lightning/matrix" + "github.com/nxshock/signaller/matrix" ) var first bool