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