blob: 93aff6925c988115959f16a91c84cb50990326d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Copyright 2021 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
package build
import (
"fmt"
)
type darwin struct{}
func (ctx darwin) build(params Params) (ImageDetails, error) {
// TODO(HerrSpace): Implement this.
return ImageDetails{}, fmt.Errorf("pkg/build: darwin.build not implemented")
}
func (ctx darwin) clean(params Params) error {
// TODO(HerrSpace): Implement this.
return fmt.Errorf("pkg/build: darwin.build not implemented")
}
|