Fix imports for new repo name

This commit is contained in:
nxshock 2019-07-18 19:21:54 +05:00
parent a3e878d677
commit 09e0f7243e
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
package main package main
import "github.com/nxshock/go-lightning/matrix" import "github.com/nxshock/signaller/matrix"
type Backend interface { type Backend interface {
Register(username, password, device string) (token string, error *matrix.ApiError) Register(username, password, device string) (token string, error *matrix.ApiError)

View File

@ -3,7 +3,7 @@ package main
import ( import (
"net/http" "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) { func errorResponse(w http.ResponseWriter, code matrix.ApiError, httpCode int, message string) {

View File

@ -8,7 +8,7 @@ import (
"strconv" "strconv"
"strings" "strings"
"github.com/nxshock/go-lightning/matrix" "github.com/nxshock/signaller/matrix"
) )
func RootHandler(w http.ResponseWriter, r *http.Request) { func RootHandler(w http.ResponseWriter, r *http.Request) {

View File

@ -6,7 +6,7 @@ import (
"os" "os"
"sync" "sync"
"github.com/nxshock/go-lightning/matrix" "github.com/nxshock/signaller/matrix"
) )
var first bool var first bool