mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
15 lines
267 B
Go
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
|
|
}
|