10 lines
186 B
Go
10 lines
186 B
Go
|
package handler
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"git.optclblast.xyz/draincloud/draincloud-core/internal/common"
|
||
|
)
|
||
|
|
||
|
type CallHandler func(ctx context.Context, req *common.Request) ([]byte, error)
|