Hi all. We are trying to incorporate Hydra's Go mo...
# ory-selfhosting
s
Hi all. We are trying to incorporate Hydra's Go modules into our own code and are running into some dependency issues. The basic problem seems to be that we want to use both
<http://github.com/ory/hydra|github.com/ory/hydra>
and
<http://github.com/ory/hydra-client-go|github.com/ory/hydra-client-go>
at the same time. But the version of
<http://github.com/ory/hydra@v2.2.0|github.com/ory/hydra@v2.2.0>
is incompatible with both
<http://github.com/ory/hydra-client-go@v2.2.0|github.com/ory/hydra-client-go@v2.2.0>
and
<http://github.com/ory/hydra-client-go@v2.1.1|github.com/ory/hydra-client-go@v2.1.1>
. From looking at the
go.mod
file I can see that
hydra
uses a
replace
directive it actually depends on
./internal/httpclient
. I am unsure of how to include this version of the hydra client in our own application so we can resolve the dependency conflict. Any pointers here?