v0.2.0 #3

Merged
kor-elf merged 22 commits from develop into main 2026-04-26 16:50:47 +05:00
Showing only changes of commit c4bd51d9bc - Show all commits
+5 -4
View File
@@ -1,11 +1,12 @@
package contract package contract
// Run is a function that executes nft command. type CommandRun interface {
type Run func(arg ...string) error // Run executes nft command.
Run(arg ...string) error
}
type Command interface { type Command interface {
// Run nft command. CommandRun
Run(arg ...string) error
// RunWithOutput Run nft command with output. // RunWithOutput Run nft command with output.
RunWithOutput(arg ...string) (string, error) RunWithOutput(arg ...string) (string, error)