c90229ed9a
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
10 lines
269 B
Go
10 lines
269 B
Go
package daemon // import "github.com/docker/docker/daemon"
|
|
|
|
import (
|
|
"github.com/docker/docker/api/types/system"
|
|
"github.com/docker/docker/dockerversion"
|
|
)
|
|
|
|
func (daemon *Daemon) fillLicense(v *system.Info) {
|
|
v.ProductLicense = dockerversion.DefaultProductLicense
|
|
}
|