Merge pull request #14 from openrelayxyz/feature/plugin-shutdown

Give plugins access to node.Close()
This commit is contained in:
Philip Morlier 2022-05-16 09:03:55 -07:00 committed by GitHub
commit ec1b7edc32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -171,6 +171,7 @@ type Node interface {
WSEndpoint() string
ResolvePath(x string) string
Attach() (Client, error)
Close() error
}
type Client interface {