From 6c307ffaa18fe2d2715a0e6f4cb172a7c3b956fb Mon Sep 17 00:00:00 2001 From: edmand46 Date: Thu, 19 Mar 2026 15:16:04 +0300 Subject: [PATCH] chore: fixed README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6bc8a06..77395c1 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Built for game networking where every byte and allocation matters. ## Installation ```bash -go install edmand46/apack@latest +go install edmand46/arpack/cmd/arpack@latest ``` ## Usage @@ -139,8 +139,8 @@ Uses unsafe pointers for zero-copy serialization. Returns bytes written/consumed ```bash # Unit tests (parser + generator) -go test ./tools/arpack/... +go test ./parser/... ./generator/... # End-to-end cross-language tests (requires dotnet SDK) -go test ./tools/arpack/e2e/... +go test ./e2e/... ```