mirror of
https://github.com/moby/moby.git
synced 2026-01-11 02:31:44 +00:00
11 lines
220 B
Go
11 lines
220 B
Go
package daemon
|
|
|
|
import (
|
|
"github.com/moby/moby/api/types/system"
|
|
"github.com/moby/moby/v2/dockerversion"
|
|
)
|
|
|
|
func (daemon *Daemon) fillLicense(v *system.Info) {
|
|
v.ProductLicense = dockerversion.DefaultProductLicense
|
|
}
|