licensing.go 269 B

12345678910
  1. package daemon // import "github.com/docker/docker/daemon"
  2. import (
  3. "github.com/docker/docker/api/types/system"
  4. "github.com/docker/docker/dockerversion"
  5. )
  6. func (daemon *Daemon) fillLicense(v *system.Info) {
  7. v.ProductLicense = dockerversion.DefaultProductLicense
  8. }