2022-02-10 22:06:57 +00:00
|
|
|
//go:build !solution
|
2021-03-18 14:39:31 +00:00
|
|
|
// +build !solution
|
|
|
|
|
|
|
|
package dupcall
|
|
|
|
|
|
|
|
import "context"
|
|
|
|
|
|
|
|
type Call struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *Call) Do(
|
|
|
|
ctx context.Context,
|
|
|
|
cb func(context.Context) (interface{}, error),
|
|
|
|
) (result interface{}, err error)
|