Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
wenovus authored and fujita committed Oct 31, 2023
1 parent 0e7420d commit 340030d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkg/config/oc/default.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ import (
"strconv"

"github.com/osrg/gobgp/v3/internal/pkg/version"
"github.com/osrg/gobgp/v3/internal/pkg/zebra"
"github.com/osrg/gobgp/v3/pkg/packet/bgp"
"github.com/osrg/gobgp/v3/pkg/packet/bmp"
"github.com/osrg/gobgp/v3/pkg/packet/rtr"
"github.com/osrg/gobgp/v3/pkg/zebra"
"github.com/spf13/viper"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ import (
api "github.com/osrg/gobgp/v3/api"
"github.com/osrg/gobgp/v3/internal/pkg/table"
"github.com/osrg/gobgp/v3/internal/pkg/version"
"github.com/osrg/gobgp/v3/internal/pkg/zebra"
"github.com/osrg/gobgp/v3/pkg/apiutil"
"github.com/osrg/gobgp/v3/pkg/config/oc"
"github.com/osrg/gobgp/v3/pkg/log"
"github.com/osrg/gobgp/v3/pkg/packet/bgp"
"github.com/osrg/gobgp/v3/pkg/packet/bmp"
"github.com/osrg/gobgp/v3/pkg/zebra"
)

type tcpListener struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/server/zclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ import (
"time"

"github.com/osrg/gobgp/v3/internal/pkg/table"
"github.com/osrg/gobgp/v3/internal/pkg/zebra"
"github.com/osrg/gobgp/v3/pkg/log"
"github.com/osrg/gobgp/v3/pkg/packet/bgp"
"github.com/osrg/gobgp/v3/pkg/zebra"
)

// nexthopStateCache stores a map of nexthop IP to metric value. Especially,
Expand Down
2 changes: 1 addition & 1 deletion pkg/server/zclient_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import (
"github.com/stretchr/testify/assert"

"github.com/osrg/gobgp/v3/internal/pkg/table"
"github.com/osrg/gobgp/v3/internal/pkg/zebra"
"github.com/osrg/gobgp/v3/pkg/log"
"github.com/osrg/gobgp/v3/pkg/zebra"
)

func Test_newPathFromIPRouteMessage(t *testing.T) {
Expand Down

0 comments on commit 340030d

Please sign in to comment.