fix: correct module path to dappco.re/go/proxy

Co-Authored-By: Virgil <virgil@lethean.io>
This commit is contained in:
Snider 2026-04-04 16:10:33 +01:00
parent c7ada3dd54
commit b8cf8713c5
14 changed files with 20 additions and 20 deletions

View file

@ -13,7 +13,7 @@ import (
"encoding/json"
"net/http"
"dappco.re/go/core/proxy"
"dappco.re/go/proxy"
)
// Router matches the standard http.ServeMux registration shape.

2
go.mod
View file

@ -1,3 +1,3 @@
module dappco.re/go/core/proxy
module dappco.re/go/proxy
go 1.26.0

View file

@ -6,7 +6,7 @@ import (
"strings"
"time"
"dappco.re/go/core/proxy"
"dappco.re/go/proxy"
)
// NewAccessLog creates an append-only access log.

View file

@ -9,7 +9,7 @@ import (
"net"
"sync"
"dappco.re/go/core/proxy"
"dappco.re/go/proxy"
)
// StratumClient is one outbound stratum TCP (optionally TLS) connection to a pool.

View file

@ -14,7 +14,7 @@ import (
"sync/atomic"
"time"
"dappco.re/go/core/proxy"
"dappco.re/go/proxy"
)
// NewStrategyFactory creates a StrategyFactory for the supplied config.

View file

@ -3,7 +3,7 @@ package pool
import (
"sync"
"dappco.re/go/core/proxy"
"dappco.re/go/proxy"
)
// FailoverStrategy wraps an ordered slice of PoolConfig entries.

View file

@ -3,8 +3,8 @@ package nicehash
import (
"time"
"dappco.re/go/core/proxy"
"dappco.re/go/core/proxy/pool"
"dappco.re/go/proxy"
"dappco.re/go/proxy/pool"
)
func init() {

View file

@ -4,8 +4,8 @@ import (
"sync"
"time"
"dappco.re/go/core/proxy"
"dappco.re/go/core/proxy/pool"
"dappco.re/go/proxy"
"dappco.re/go/proxy/pool"
)
// NonceMapper manages one outbound pool connection and the 256-slot NonceStorage.

View file

@ -12,8 +12,8 @@ package nicehash
import (
"sync"
"dappco.re/go/core/proxy"
"dappco.re/go/core/proxy/pool"
"dappco.re/go/proxy"
"dappco.re/go/proxy/pool"
)
// NonceSplitter is the Splitter implementation for NiceHash mode.

View file

@ -3,7 +3,7 @@ package nicehash
import (
"sync"
"dappco.re/go/core/proxy"
"dappco.re/go/proxy"
)
// NonceStorage is the 256-slot fixed-byte allocation table for one NonceMapper.

View file

@ -3,7 +3,7 @@ package nicehash
import (
"testing"
"dappco.re/go/core/proxy"
"dappco.re/go/proxy"
)
func TestNonceStorage_AddAndRemove(t *testing.T) {

View file

@ -3,8 +3,8 @@ package simple
import (
"time"
"dappco.re/go/core/proxy"
"dappco.re/go/core/proxy/pool"
"dappco.re/go/proxy"
"dappco.re/go/proxy/pool"
)
func init() {

View file

@ -4,8 +4,8 @@ import (
"sync"
"time"
"dappco.re/go/core/proxy"
"dappco.re/go/core/proxy/pool"
"dappco.re/go/proxy"
"dappco.re/go/proxy/pool"
)
// SimpleMapper holds one outbound pool connection and serves at most one active miner

View file

@ -10,8 +10,8 @@ package simple
import (
"sync"
"dappco.re/go/core/proxy"
"dappco.re/go/core/proxy/pool"
"dappco.re/go/proxy"
"dappco.re/go/proxy/pool"
)
// SimpleSplitter is the Splitter implementation for simple (passthrough) mode.