Clean up mod

This commit is contained in:
Owen Schwartz 2024-12-24 16:22:15 -05:00
parent 934a235c1e
commit 447a983790
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD
4 changed files with 9 additions and 6 deletions

2
go.mod
View file

@ -1,4 +1,4 @@
module newt
module github.com/fosrl/newt
go 1.23.1

View file

@ -10,15 +10,16 @@ import (
"math/rand"
"net"
"net/netip"
"newt/logger"
"newt/proxy"
"newt/websocket"
"os"
"os/signal"
"strings"
"syscall"
"time"
"github.com/fosrl/newt/logger"
"github.com/fosrl/newt/proxy"
"github.com/fosrl/newt/websocket"
"golang.org/x/net/icmp"
"golang.org/x/net/ipv4"
"golang.zx2c4.com/wireguard/conn"

View file

@ -4,11 +4,12 @@ import (
"fmt"
"io"
"net"
"newt/logger"
"strings"
"sync"
"time"
"github.com/fosrl/newt/logger"
"golang.zx2c4.com/wireguard/tun/netstack"
)

View file

@ -6,11 +6,12 @@ import (
"fmt"
"net/http"
"net/url"
"newt/logger"
"strings"
"sync"
"time"
"github.com/fosrl/newt/logger"
"github.com/gorilla/websocket"
)