feat: rename package

This commit is contained in:
mzz2017
2023-01-23 20:01:24 +08:00
parent 6fba4f8570
commit ea409f16d5
26 changed files with 71 additions and 65 deletions

View File

@ -9,12 +9,12 @@ import (
"context"
"errors"
"fmt"
"foo/common"
"foo/common/consts"
"foo/component/outbound"
"foo/component/outbound/dialer"
"foo/component/routing"
"foo/pkg/pool"
"github.com/v2rayA/dae/common"
"github.com/v2rayA/dae/common/consts"
"github.com/v2rayA/dae/component/outbound"
"github.com/v2rayA/dae/component/outbound/dialer"
"github.com/v2rayA/dae/component/routing"
"github.com/v2rayA/dae/pkg/pool"
"github.com/cilium/ebpf"
"github.com/cilium/ebpf/rlimit"
"github.com/sirupsen/logrus"

View File

@ -7,8 +7,8 @@ package control
import (
"fmt"
"foo/common"
"foo/common/consts"
"github.com/v2rayA/dae/common"
"github.com/v2rayA/dae/common/consts"
"github.com/cilium/ebpf"
"golang.org/x/net/dns/dnsmessage"
"net/netip"

View File

@ -6,7 +6,7 @@
package control
import (
"foo/common/consts"
"github.com/v2rayA/dae/common/consts"
"strings"
)

View File

@ -7,9 +7,9 @@ package control
import (
"fmt"
"foo/common"
"foo/common/consts"
"foo/component/routing"
"github.com/v2rayA/dae/common"
"github.com/v2rayA/dae/common/consts"
"github.com/v2rayA/dae/component/routing"
"github.com/cilium/ebpf"
"net/netip"
"strconv"

View File

@ -9,8 +9,8 @@ import (
"encoding/binary"
"errors"
"fmt"
"foo/common"
"foo/common/consts"
"github.com/v2rayA/dae/common"
"github.com/v2rayA/dae/common/consts"
"golang.org/x/sys/unix"
"io"
"net"

View File

@ -8,8 +8,8 @@ package control
import (
"encoding/binary"
"fmt"
"foo/common/consts"
"foo/pkg/pool"
"github.com/v2rayA/dae/common/consts"
"github.com/v2rayA/dae/pkg/pool"
"golang.org/x/net/dns/dnsmessage"
"net"
"net/netip"

View File

@ -7,7 +7,7 @@ package control
import (
"fmt"
"foo/pkg/pool"
"github.com/v2rayA/dae/pkg/pool"
"golang.org/x/net/proxy"
"net"
"net/netip"

View File

@ -6,7 +6,7 @@
package control
import (
"foo/common"
"github.com/v2rayA/dae/common"
"github.com/cilium/ebpf"
"net/netip"
)