gustav/internal/client/client.go

8 lines
122 B
Go
Raw Permalink Normal View History

2024-09-07 22:40:03 +00:00
package client
import "context"
type Client[InT, OutT any] interface {
Do(ctx context.Context, in InT) (OutT, error)
}