mirror of
https://github.com/larksuite/meegle-cli.git
synced 2026-09-14 20:26:39 +08:00
13 lines
291 B
Go
13 lines
291 B
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package executor
|
|
|
|
import "context"
|
|
|
|
type Func func(ctx context.Context, req *Request) (*RawResult, error)
|
|
|
|
func (f Func) Execute(ctx context.Context, req *Request) (*RawResult, error) {
|
|
return f(ctx, req)
|
|
}
|