Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
10 lines
157 B
Text
10 lines
157 B
Text
package testpkg
|
|||
|
|||
import "context"
|
|||
|
|||
//nd:hostservice name=Ping permission=ping
|
|||
type PingService interface {
|
|||
//nd:hostfunc
|
|||
Ping(ctx context.Context) error
|
|||
}
|