summaryrefslogtreecommitdiff
path: root/testSort/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-30 12:17:38 -0600
committerJeff Carr <[email protected]>2024-11-30 12:17:38 -0600
commitdc356e9d0fc6b05f50b01d141206f679ecda2de9 (patch)
treea875c8f8288f0a7292bac99176894a3b7fd07426 /testSort/main.go
parent10cf601ea03e92323d802391a437f335924e5107 (diff)
auto run protoc
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'testSort/main.go')
-rw-r--r--testSort/main.go37
1 files changed, 0 insertions, 37 deletions
diff --git a/testSort/main.go b/testSort/main.go
deleted file mode 100644
index f20361f..0000000
--- a/testSort/main.go
+++ /dev/null
@@ -1,37 +0,0 @@
-package main
-
-import (
- "log"
-
- // "go.wit.com/apps/autogenpb/testautogen"
-)
-
-func main() {
- log.Println("empty because go mod tidy failed")
- log.Println("why does go mod tidy fail when this is here?")
- // go: go.wit.com/apps/autogenpb/testSort imports
- // go.wit.com/apps/autogenpb/testautogen: cannot find module providing package go.wit.com/apps/autogenpb/testautogen: unrecognized import path "go.wit.com/apps/autogenpb/testautogen": parse https://go.wit.com/apps/autogenpb/testautogen?go-get=1: no go-import meta tags ()
-
- /*
- all := new(testautogen.GitTags)
- // newt := new(testautogen.GitTag)
-
- new1 := testautogen.GitTag{
- Refname: "master",
- Objectname: "blah",
- }
- all.Append(&new1)
-
- new2 := testautogen.GitTag{
- Refname: "devel",
- Objectname: "j23jljalse",
- }
- all.Append(&new2)
-
- loop := all.SortByPath()
- for loop.Scan() {
- t := loop.Next()
- log.Println("hello testSort t.Refname =", t.Refname, t.Objectname)
- }
- */
-}