config.go 259 字节
Newer Older
1 2 3 4 5 6
package configs // import "github.com/opencontainers/runc/libenclave/configs"

type InitEnclaveConfig struct {
	Type string   `json:"type"`
	Path string   `json:"path"`
	Args string   `json:"args"`
7
	Signer string `json:"signer"`
8 9
	Cmd  []string `json:"cmd"`
}