blob: 6b710f4caf7a25582ddb9e101d47713ff9441ef9 [file] [log] [blame]
// Copyright 2018 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 vcs
type netbsd struct {
*git
}
func newNetBSD(vm, dir string) *netbsd {
return &netbsd{
git: newGit(dir, nil),
}
}