13 lines
270 B
Go
13 lines
270 B
Go
package contract
|
|
|
|
// Run is a function that executes nft command.
|
|
type Run func(arg ...string) error
|
|
|
|
type Command interface {
|
|
// Run nft command.
|
|
Run(arg ...string) error
|
|
|
|
// RunWithOutput Run nft command with output.
|
|
RunWithOutput(arg ...string) (string, error)
|
|
}
|