shad-go/dupcall/dupcall.go
Fedor Korotkiy a1d5eee219 Dupcall task
2021-03-18 17:41:28 +03:00

13 lines
201 B
Go

// +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)