Files
cunicu/test/e2e/node.go
Steffen Vogel 204d579942 restructure tests
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2022-02-07 17:35:55 +01:00

16 lines
170 B
Go

//go:build linux
package e2e
import (
g "github.com/stv0g/gont/pkg"
)
type Node interface {
g.Node
Start(args ...interface{}) error
Stop() error
Close() error
}