From 4cdf3a6d8cf1a35601ae813ce7fa8468b226d15f Mon Sep 17 00:00:00 2001 From: william harbert Date: Sat, 19 Jul 2025 13:30:50 -0400 Subject: [PATCH] update readme --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7ffaf15..51ce09e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # Go Application Template ## Structure + +``` my-lib/ ├── lib1/ # Individual importable library. Duplicate as needed │ ├── lib1.go @@ -9,9 +11,11 @@ my-lib/ └── pkg1/ # Internal use package. Duplicate as needed ├── pgk1.go └── pgk1_test.go +``` + ## Use -- `git clone git.develent.net/wiharb/go-template-lib.git [project-name]` +- `git clone https://git.develent.net/wiharb/go-template-lib.git [project-name]` - `cd ./[project-name]` - `rm -rf ./.git` - Rename and duplicate `lib1` and `internal/pkg1` as needed