enclave.go 253 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
package configs

// Define the types of enclave hardware
const (
	EnclaveHwDefault  string = ""
	EnclaveHwIntelSgx string = "intelSgx"
)

type Enclave struct {
	Type string `json:"type"`
	Path string `json:"path"`
	Args string `json:"args,omitempty"`
}