Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
10 lines
194 B
Text
10 lines
194 B
Text
package testpkg
|
|||
|
|||
import "context"
|
|||
|
|||
//nd:hostservice name=Math permission=math
|
|||
type MathService interface {
|
|||
//nd:hostfunc
|
|||
Add(ctx context.Context, a int32, b int32) (result int32, err error)
|
|||
}
|