diff --git a/pkg/crypto/go.mod b/pkg/crypto/go.mod index d4cea64..70b5eed 100644 --- a/pkg/crypto/go.mod +++ b/pkg/crypto/go.mod @@ -24,7 +24,10 @@ require ( ) replace ( + crypto.orly => ../crypto encoders.orly => ../encoders interfaces.orly => ../interfaces + next.orly.dev => ../../ + protocol.orly => ../protocol utils.orly => ../utils ) diff --git a/pkg/encoders/go.mod b/pkg/encoders/go.mod index 485bae5..bcc2254 100644 --- a/pkg/encoders/go.mod +++ b/pkg/encoders/go.mod @@ -25,7 +25,9 @@ require ( replace ( crypto.orly => ../crypto + encoders.orly => ../encoders interfaces.orly => ../interfaces + next.orly.dev => ../../ protocol.orly => ../protocol utils.orly => ../utils ) diff --git a/pkg/interfaces/go.mod b/pkg/interfaces/go.mod index 6f72c15..31068ca 100644 --- a/pkg/interfaces/go.mod +++ b/pkg/interfaces/go.mod @@ -3,9 +3,10 @@ module interfaces.orly go 1.25.0 replace ( - crypto.orly => ./pkg/crypto + crypto.orly => ../crypto encoders.orly => ../encoders - database.orly => ../database interfaces.orly => ../interfaces next.orly.dev => ../../ + protocol.orly => ../protocol + utils.orly => ../utils ) diff --git a/pkg/protocol/go.mod b/pkg/protocol/go.mod index 7b70258..cea7f9a 100644 --- a/pkg/protocol/go.mod +++ b/pkg/protocol/go.mod @@ -27,5 +27,6 @@ replace ( encoders.orly => ../encoders interfaces.orly => ../interfaces next.orly.dev => ../../ + protocol.orly => ../protocol utils.orly => ../utils ) diff --git a/pkg/utils/go.mod b/pkg/utils/go.mod index 079ebc2..5ddcafc 100644 --- a/pkg/utils/go.mod +++ b/pkg/utils/go.mod @@ -17,8 +17,10 @@ require ( ) replace ( - crypto.orly => ./pkg/crypto + crypto.orly => ../crypto encoders.orly => ../encoders interfaces.orly => ../interfaces next.orly.dev => ../../ + protocol.orly => ../protocol + utils.orly => ../utils )