shad-go/dupcall/dupcall.go

14 lines
202 B
Go
Raw Normal View History

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