-
Notifications
You must be signed in to change notification settings - Fork 50
Open
Labels
type: bugSomething isn't workingSomething isn't working
Description
Describe the bug
This is the generated interface for a module with a single method that returns a string:
type Module interface {
Obscure(args *ArgsObscure) string
}Since errors cannot be thrown in Go, we should handle them in the bindings as with do with Rust's Result type:
type Module interface {
Obscure(args *ArgsObscure) (string, error)
}Metadata
Metadata
Assignees
Labels
type: bugSomething isn't workingSomething isn't working