Fix up import paths

This commit is contained in:
eyedeekay
2024-11-09 11:54:18 -05:00
parent 912f176071
commit 7b1b6d431a
4 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@ import (
"fmt"
"log"
"github.com/eyedeekay/goSam"
"github.com/go-i2p/goSam"
)
/**

View File

@ -14,8 +14,8 @@ import (
"sync"
"time"
"github.com/eyedeekay/i2pkeys"
//samkeys "github.com/eyedeekay/goSam/compat"
"github.com/go-i2p/i2pkeys"
//samkeys "github.com/go-i2p/goSam/compat"
)
// A Client represents a single Connection to the SAM bridge

View File

@ -12,8 +12,8 @@ import (
// "time"
//"log"
"net/http"
//"github.com/eyedeekay/sam3/helper"
//"github.com/eyedeekay/i2pkeys"
//"github.com/go-i2p/sam3/helper"
//"github.com/go-i2p/i2pkeys"
)
func HelloServer(w http.ResponseWriter, r *http.Request) {

View File

@ -3,7 +3,7 @@ package main
import (
"flag"
"github.com/eyedeekay/goSam"
"github.com/go-i2p/goSam"
"github.com/getlantern/go-socks5"
"log"
)