Refactor to consolidate APIs into contract package and introduce NFT interface for better modularity and maintainability.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
package nft
|
||||
|
||||
type Version interface {
|
||||
// Version returns the version of the nftables client.
|
||||
Version() string
|
||||
// Opts returns the options of the nftables client.
|
||||
Opts() map[string]string
|
||||
}
|
||||
Reference in New Issue
Block a user