v2
lizifeng 2023-04-21 18:20:54 +08:00
parent 4b1333cc5d
commit a3c7754718
3 changed files with 5 additions and 4 deletions

View File

@ -2,7 +2,7 @@ package app
import ( import (
"context" "context"
"git.makemake.in/test/mycommon/mylog" "git.makemake.in/kzkzzzz/mycommon/mylog"
"io" "io"
"math/rand" "math/rand"
"net" "net"

3
go.mod
View File

@ -2,7 +2,7 @@ module proxyport
go 1.18 go 1.18
require git.makemake.in/test/mycommon v0.0.0-20230119033226-3679bd502caf require git.makemake.in/kzkzzzz/mycommon v0.0.0-20230421101858-aa0fb37da29c
require ( require (
github.com/fsnotify/fsnotify v1.6.0 // indirect github.com/fsnotify/fsnotify v1.6.0 // indirect
@ -23,6 +23,7 @@ require (
golang.org/x/sys v0.4.0 // indirect golang.org/x/sys v0.4.0 // indirect
golang.org/x/text v0.6.0 // indirect golang.org/x/text v0.6.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect
) )

View File

@ -2,8 +2,8 @@ package main
import ( import (
"flag" "flag"
"git.makemake.in/test/mycommon/myconf" "git.makemake.in/kzkzzzz/mycommon/myconf"
"git.makemake.in/test/mycommon/mylog" "git.makemake.in/kzkzzzz/mycommon/mylog"
"proxyport/app" "proxyport/app"
) )