1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/libnetwork/drivers/bridge/network.go
Arnaud Porterie 8ca185e2ee Move bridge to drivers/
Signed-off-by: Arnaud Porterie <arnaud.porterie@docker.com>
2015-02-24 11:29:06 -08:00

15 lines
267 B
Go

package bridge
import "github.com/docker/libnetwork"
type bridgeNetwork struct {
Config Configuration
}
func (b *bridgeNetwork) Type() string {
return NetworkType
}
func (b *bridgeNetwork) Link(name string) ([]*libnetwork.Interface, error) {
return nil, nil
}