blob: a4f59d562fa24a9fcb19d60dcbb2666cd6add041 (
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(string, string) error {
return nil
}
|