mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-09-27 05:06:02 +08:00
16 lines
170 B
Go
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
|
|
}
|