mirror of
https://github.com/moby/moby.git
synced 2025-09-19 17:01:53 +03: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
|
|
}
|