Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
10 lines
185 B
Text
10 lines
185 B
Text
package testpkg
|
|||
|
|||
import "context"
|
|||
|
|||
//nd:hostservice name=Codec permission=codec
|
|||
type CodecService interface {
|
|||
//nd:hostfunc
|
|||
Encode(ctx context.Context, data []byte) ([]byte, error)
|
|||
}
|