*: appc/cni -> containernetworking/cni

The project has been moved so internally we simply rename everything.
Consumers are recommended to update their vendored version of cni.
This commit is contained in:
Stefan Junker
2016-05-04 16:06:05 +02:00
parent dbcecbcec6
commit ed5f8dfeb2
34 changed files with 76 additions and 76 deletions

View File

@@ -18,9 +18,9 @@ import (
"fmt"
"net"
"github.com/appc/cni/pkg/ip"
"github.com/appc/cni/pkg/types"
"github.com/appc/cni/plugins/ipam/host-local/backend"
"github.com/containernetworking/cni/pkg/ip"
"github.com/containernetworking/cni/pkg/types"
"github.com/containernetworking/cni/plugins/ipam/host-local/backend"
)
type IPAllocator struct {

View File

@@ -19,7 +19,7 @@ import (
"fmt"
"net"
"github.com/appc/cni/pkg/types"
"github.com/containernetworking/cni/pkg/types"
)
// IPAMConfig represents the IP related network configuration.

View File

@@ -15,10 +15,10 @@
package main
import (
"github.com/appc/cni/plugins/ipam/host-local/backend/disk"
"github.com/containernetworking/cni/plugins/ipam/host-local/backend/disk"
"github.com/appc/cni/pkg/skel"
"github.com/appc/cni/pkg/types"
"github.com/containernetworking/cni/pkg/skel"
"github.com/containernetworking/cni/pkg/types"
)
func main() {