34 lines
555 B
Go
34 lines
555 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
// "go.wit.com/apps/autogenpb/testautogen"
|
|
)
|
|
|
|
func main() {
|
|
log.Info("empty because go mod tidy failed")
|
|
/*
|
|
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)
|
|
}
|
|
*/
|
|
}
|