Files
unifood/core/interfaces/http.go
2025-07-20 13:47:16 +02:00

8 lines
178 B
Go

package interfaces
import "context"
type QueryClient[T any] interface {
Get(ctx context.Context, queryStatement string, selectStatement string, allowCache bool) (*T, error)
}