Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
10 lines
188 B
Text
10 lines
188 B
Text
package testpkg
|
|||
|
|||
import "context"
|
|||
|
|||
//nd:hostservice name=Counter permission=counter
|
|||
type CounterService interface {
|
|||
//nd:hostfunc
|
|||
Count(ctx context.Context, name string) (value int32)
|
|||
}
|