From 1fb7f614073672c84fd2ab36929e9cbd70b561eb Mon Sep 17 00:00:00 2001 From: Jazz Turner-Baggs <473256+jazzz@users.noreply.github.com> Date: Thu, 3 Jul 2025 09:05:15 -0700 Subject: [PATCH] change folder structure --- nim/{src => }/chat_proto.nim | 2 +- nim/chat_proto.nimble | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) rename nim/{src => }/chat_proto.nim (83%) diff --git a/nim/src/chat_proto.nim b/nim/chat_proto.nim similarity index 83% rename from nim/src/chat_proto.nim rename to nim/chat_proto.nim index bbbfcee..a0da39d 100644 --- a/nim/src/chat_proto.nim +++ b/nim/chat_proto.nim @@ -1,7 +1,7 @@ import protobuf_serialization import protobuf_serialization/proto_parser -import_proto3 "../proto/base.proto" +import_proto3 "./proto/base.proto" export protobuf_serialization diff --git a/nim/chat_proto.nimble b/nim/chat_proto.nimble index 60db5d6..a30b2b1 100644 --- a/nim/chat_proto.nimble +++ b/nim/chat_proto.nimble @@ -4,9 +4,10 @@ version = "0.1.0" author = "jazzz" description = "Type definitions for the chat protocol" license = "MIT" -srcDir = "src" +bin = @["chat_proto"] # Dependencies requires "nim >= 2.0.14" requires "chronicles" requires "protobuf_serialization" +requires "protobuf"