mirror of
https://github.com/navidrome/navidrome.git
synced 2026-05-03 06:51:16 +00:00
10 lines
188 B
Plaintext
10 lines
188 B
Plaintext
package testpkg
|
|
|
|
import "context"
|
|
|
|
//nd:hostservice name=Counter permission=counter
|
|
type CounterService interface {
|
|
//nd:hostfunc
|
|
Count(ctx context.Context, name string) (value int32)
|
|
}
|