From a47093139d5497a3c06ab40579ee4759d0febffa Mon Sep 17 00:00:00 2001 From: "Alex G. Wolff" <13754094+alexgwolff@users.noreply.github.com> Date: Tue, 16 Jan 2024 10:38:21 -0300 Subject: [PATCH] rewrite path struct --- go.work | 4 ++-- {core => src/core}/go.mod | 0 {core => src/core}/protocol.go | 0 {core => src/core}/protocol_test.go | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename {core => src/core}/go.mod (100%) rename {core => src/core}/protocol.go (100%) rename {core => src/core}/protocol_test.go (100%) diff --git a/go.work b/go.work index 6e9786f..4bc6af1 100644 --- a/go.work +++ b/go.work @@ -1,3 +1,3 @@ -go 1.18 +go 1.21.6 -use ./core +use ./src/core diff --git a/core/go.mod b/src/core/go.mod similarity index 100% rename from core/go.mod rename to src/core/go.mod diff --git a/core/protocol.go b/src/core/protocol.go similarity index 100% rename from core/protocol.go rename to src/core/protocol.go diff --git a/core/protocol_test.go b/src/core/protocol_test.go similarity index 100% rename from core/protocol_test.go rename to src/core/protocol_test.go