dendrite.nvim/core/handlers/handler.go

10 lines
148 B
Go

package handlers
import (
"context"
"encoding/json"
)
type Handler interface {
Handle(ctx context.Context, raw json.RawMessage) (any, error)
}