From 76b251dea97f934a9cc41c09b2a4122891d16cb7 Mon Sep 17 00:00:00 2001 From: mleku Date: Mon, 1 Sep 2025 17:37:25 +0100 Subject: [PATCH] Update module replacements in `go.mod` files to reflect consistent relative paths across packages --- pkg/crypto/go.mod | 3 +++ pkg/encoders/go.mod | 2 ++ pkg/interfaces/go.mod | 5 +++-- pkg/protocol/go.mod | 1 + pkg/utils/go.mod | 4 +++- 5 files changed, 12 insertions(+), 3 deletions(-) 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 )