승인된 execution preset을 Edge 조정 경계와 Node workspace/tool 실행 경계로 연결해 단일 요청 수명주기와 관측 계약을 일관되게 처리한다.
15 lines
523 B
Go
15 lines
523 B
Go
//go:build !darwin && !linux
|
|
|
|
package workspace
|
|
|
|
func initializeRequestArtifacts(_ *catalogEntry, _ string) (map[string]ownedArtifact, []ownedArtifact, error) {
|
|
return nil, nil, errCleanupUnsupported
|
|
}
|
|
|
|
func createOwnedArtifact(_ *catalogEntry, _, _ string, _ []byte, _ map[string]ownedArtifact) ([]ownedArtifact, error) {
|
|
return nil, errCleanupUnsupported
|
|
}
|
|
|
|
func validateAndRemoveOwnedArtifacts(_ *catalogEntry, _ string, _ map[string]ownedArtifact, _ []ownedArtifact) (int, error) {
|
|
return 0, errCleanupUnsupported
|
|
}
|