blob: 248bfe2487460d382e45c0c0b46010654bbc5a3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright 2019 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
type test struct{}
func (tb test) build(params Params) (ImageDetails, error) {
return ImageDetails{}, nil
}
func (tb test) clean(Params) error {
return nil
}
|