Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
10 lines
193 B
Text
10 lines
193 B
Text
package testpkg
|
|||
|
|||
import "context"
|
|||
|
|||
//nd:hostservice name=Echo permission=echo
|
|||
type EchoService interface {
|
|||
//nd:hostfunc
|
|||
Echo(ctx context.Context, message string) (reply string, err error)
|
|||
}
|