mirror of
https://github.com/reactos/syzkaller.git
synced 2024-12-02 16:36:47 +00:00
c487cd4633
Image takes too many arguments, so we need to do lots of forwarding, adding new argumnets is painful and most OSes are not interested in lots of arguments. Combine all arguments into a params struct.
15 lines
319 B
Go
15 lines
319 B
Go
// 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) error {
|
|
return nil
|
|
}
|
|
|
|
func (tb test) clean(string, string) error {
|
|
return nil
|
|
}
|