Updating packages
This commit is contained in:
parent
c89756630f
commit
8f0db70487
10
client.go
10
client.go
@ -1,11 +1,11 @@
|
|||||||
package fayec
|
package fayec
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/thesyncim/fayec/internal/dispatcher"
|
"gitea.watsonlabs.net/watsonb8/fayec/internal/dispatcher"
|
||||||
"github.com/thesyncim/fayec/message"
|
"gitea.watsonlabs.net/watsonb8/fayec/message"
|
||||||
"github.com/thesyncim/fayec/subscription"
|
"gitea.watsonlabs.net/watsonb8/fayec/subscription"
|
||||||
"github.com/thesyncim/fayec/transport"
|
"gitea.watsonlabs.net/watsonb8/fayec/transport"
|
||||||
_ "github.com/thesyncim/fayec/transport/websocket"
|
_ "gitea.watsonlabs.net/watsonb8/fayec/transport/websocket"
|
||||||
)
|
)
|
||||||
|
|
||||||
type options struct {
|
type options struct {
|
||||||
|
@ -2,9 +2,9 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/thesyncim/fayec"
|
"gitea.watsonlabs.net/watsonb8/fayec"
|
||||||
"github.com/thesyncim/fayec/message"
|
"gitea.watsonlabs.net/watsonb8/fayec/message"
|
||||||
"github.com/thesyncim/fayec/subscription"
|
"gitea.watsonlabs.net/watsonb8/fayec/subscription"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@ package extensions
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"github.com/thesyncim/faye/message"
|
"gitea.watsonlabs.net/watsonb8/fayec/message"
|
||||||
"io"
|
"io"
|
||||||
"log"
|
"log"
|
||||||
)
|
)
|
||||||
@ -12,7 +12,6 @@ func debugJson(v interface{}) string {
|
|||||||
return string(b)
|
return string(b)
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
|
||||||
type DebugExtension struct {
|
type DebugExtension struct {
|
||||||
in *log.Logger
|
in *log.Logger
|
||||||
out *log.Logger
|
out *log.Logger
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package extensions
|
package extensions
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/thesyncim/faye/message"
|
"gitea.watsonlabs.net/watsonb8/fayec/message"
|
||||||
)
|
)
|
||||||
|
|
||||||
type GetStream struct {
|
type GetStream struct {
|
||||||
|
2
go.mod
2
go.mod
@ -1,4 +1,4 @@
|
|||||||
module github.com/thesyncim/fayec
|
module gitea.watsonlabs.net/watsonb8/fayec
|
||||||
|
|
||||||
go 1.21.0
|
go 1.21.0
|
||||||
|
|
||||||
|
@ -2,10 +2,10 @@ package dispatcher
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/thesyncim/fayec/internal/store"
|
"gitea.watsonlabs.net/watsonb8/fayec/internal/store"
|
||||||
"github.com/thesyncim/fayec/message"
|
"gitea.watsonlabs.net/watsonb8/fayec/message"
|
||||||
"github.com/thesyncim/fayec/subscription"
|
"gitea.watsonlabs.net/watsonb8/fayec/subscription"
|
||||||
"github.com/thesyncim/fayec/transport"
|
"gitea.watsonlabs.net/watsonb8/fayec/transport"
|
||||||
"log"
|
"log"
|
||||||
"strconv"
|
"strconv"
|
||||||
"sync"
|
"sync"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package store
|
package store
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/thesyncim/fayec/subscription"
|
"gitea.watsonlabs.net/watsonb8/fayec/subscription"
|
||||||
"sync"
|
"sync"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@ package subscription
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
"github.com/thesyncim/fayec/message"
|
"gitea.watsonlabs.net/watsonb8/fayec/message"
|
||||||
"regexp"
|
"regexp"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@ package transport
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"github.com/thesyncim/fayec/message"
|
"gitea.watsonlabs.net/watsonb8/fayec/message"
|
||||||
"net/http"
|
"net/http"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
@ -3,9 +3,9 @@ package websocket
|
|||||||
import (
|
import (
|
||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"gitea.watsonlabs.net/watsonb8/fayec/message"
|
||||||
|
"gitea.watsonlabs.net/watsonb8/fayec/transport"
|
||||||
"github.com/gorilla/websocket"
|
"github.com/gorilla/websocket"
|
||||||
"github.com/thesyncim/fayec/message"
|
|
||||||
"github.com/thesyncim/fayec/transport"
|
|
||||||
"log"
|
"log"
|
||||||
"net"
|
"net"
|
||||||
"sync"
|
"sync"
|
||||||
|
Loading…
Reference in New Issue
Block a user