10 lines
291 B
Go
10 lines
291 B
Go
package domain
|
|
|
|
// Deprecated: TODO: 即将废弃
|
|
type DeployConfig struct {
|
|
NodeId string `json:"nodeId"`
|
|
NodeConfig map[string]any `json:"nodeConfig"`
|
|
Provider string `json:"provider"`
|
|
ProviderAccessId string `json:"providerAccessId"`
|
|
}
|