1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/libnetwork/bridge/network.go
Arnaud Porterie 3125c1f7c7 WIP - Code moves
Signed-off-by: Arnaud Porterie <arnaud.porterie@docker.com>
2015-02-22 21:42:34 -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
}