Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
14 lines
242 B
Text
14 lines
242 B
Text
package testpkg
|
|||
|
|||
import "context"
|
|||
|
|||
type Filter struct {
|
|||
Active bool
|
|||
}
|
|||
|
|||
//nd:hostservice name=List permission=list
|
|||
type ListService interface {
|
|||
//nd:hostfunc
|
|||
Items(ctx context.Context, name string, filter Filter) (count int32, err error)
|
|||
}
|