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