diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..f71254f --- /dev/null +++ b/.gitmodules @@ -0,0 +1,4 @@ +[submodule "external/go"] + path = external/go + url = https://github.com/dappcore/go.git + branch = dev diff --git a/external/go b/external/go new file mode 160000 index 0000000..d661b70 --- /dev/null +++ b/external/go @@ -0,0 +1 @@ +Subproject commit d661b703e16183b3cbab101de189f688888a1174 diff --git a/go.work b/go.work new file mode 100644 index 0000000..62fdf28 --- /dev/null +++ b/go.work @@ -0,0 +1,6 @@ +go 1.26.0 + +use ( + ./go + ./external/go +) diff --git a/go.mod b/go/go.mod similarity index 100% rename from go.mod rename to go/go.mod diff --git a/go.sum b/go/go.sum similarity index 100% rename from go.sum rename to go/go.sum diff --git a/pkg/help/ax7_test.go b/go/pkg/help/ax7_test.go similarity index 100% rename from pkg/help/ax7_test.go rename to go/pkg/help/ax7_test.go diff --git a/pkg/help/catalog.go b/go/pkg/help/catalog.go similarity index 100% rename from pkg/help/catalog.go rename to go/pkg/help/catalog.go diff --git a/pkg/help/catalog_test.go b/go/pkg/help/catalog_test.go similarity index 100% rename from pkg/help/catalog_test.go rename to go/pkg/help/catalog_test.go diff --git a/pkg/help/generate.go b/go/pkg/help/generate.go similarity index 100% rename from pkg/help/generate.go rename to go/pkg/help/generate.go diff --git a/pkg/help/generate_test.go b/go/pkg/help/generate_test.go similarity index 100% rename from pkg/help/generate_test.go rename to go/pkg/help/generate_test.go diff --git a/pkg/help/ingest.go b/go/pkg/help/ingest.go similarity index 100% rename from pkg/help/ingest.go rename to go/pkg/help/ingest.go diff --git a/pkg/help/ingest_test.go b/go/pkg/help/ingest_test.go similarity index 100% rename from pkg/help/ingest_test.go rename to go/pkg/help/ingest_test.go diff --git a/pkg/help/integration_test.go b/go/pkg/help/integration_test.go similarity index 100% rename from pkg/help/integration_test.go rename to go/pkg/help/integration_test.go diff --git a/pkg/help/layout.go b/go/pkg/help/layout.go similarity index 100% rename from pkg/help/layout.go rename to go/pkg/help/layout.go diff --git a/pkg/help/layout_test.go b/go/pkg/help/layout_test.go similarity index 100% rename from pkg/help/layout_test.go rename to go/pkg/help/layout_test.go diff --git a/pkg/help/parser.go b/go/pkg/help/parser.go similarity index 100% rename from pkg/help/parser.go rename to go/pkg/help/parser.go diff --git a/pkg/help/parser_test.go b/go/pkg/help/parser_test.go similarity index 100% rename from pkg/help/parser_test.go rename to go/pkg/help/parser_test.go diff --git a/pkg/help/render.go b/go/pkg/help/render.go similarity index 100% rename from pkg/help/render.go rename to go/pkg/help/render.go diff --git a/pkg/help/render_test.go b/go/pkg/help/render_test.go similarity index 100% rename from pkg/help/render_test.go rename to go/pkg/help/render_test.go diff --git a/pkg/help/search.go b/go/pkg/help/search.go similarity index 100% rename from pkg/help/search.go rename to go/pkg/help/search.go diff --git a/pkg/help/search_bench_test.go b/go/pkg/help/search_bench_test.go similarity index 100% rename from pkg/help/search_bench_test.go rename to go/pkg/help/search_bench_test.go diff --git a/pkg/help/search_test.go b/go/pkg/help/search_test.go similarity index 100% rename from pkg/help/search_test.go rename to go/pkg/help/search_test.go diff --git a/pkg/help/server.go b/go/pkg/help/server.go similarity index 100% rename from pkg/help/server.go rename to go/pkg/help/server.go diff --git a/pkg/help/server_test.go b/go/pkg/help/server_test.go similarity index 100% rename from pkg/help/server_test.go rename to go/pkg/help/server_test.go diff --git a/pkg/help/stemmer.go b/go/pkg/help/stemmer.go similarity index 100% rename from pkg/help/stemmer.go rename to go/pkg/help/stemmer.go diff --git a/pkg/help/stemmer_test.go b/go/pkg/help/stemmer_test.go similarity index 100% rename from pkg/help/stemmer_test.go rename to go/pkg/help/stemmer_test.go diff --git a/pkg/help/templates.go b/go/pkg/help/templates.go similarity index 100% rename from pkg/help/templates.go rename to go/pkg/help/templates.go diff --git a/pkg/help/templates_test.go b/go/pkg/help/templates_test.go similarity index 100% rename from pkg/help/templates_test.go rename to go/pkg/help/templates_test.go diff --git a/pkg/help/topic.go b/go/pkg/help/topic.go similarity index 100% rename from pkg/help/topic.go rename to go/pkg/help/topic.go