initial structure

This commit is contained in:
2023-10-14 14:03:32 +02:00
parent 69e151039e
commit 65eec9a2f6
14 changed files with 38 additions and 0 deletions

1
.gitignore vendored
View File

@@ -8,6 +8,7 @@
*.dll
*.so
*.dylib
bin/*
# Test binary, built with `go test -c`
*.test

21
Makefile Normal file
View File

@@ -0,0 +1,21 @@
BUILD_TARGET = ./bin/
GITW = ./cmd/gitw
all: clean test build
run: run-gitw
run-gitw:
go run $(GITW)
clean:
go clean
rm -rf $(BUILD_TARGET)
test:
go test ./...
build: build-gitw
build-gitw:
go build -ldflags "-s -w" -o $(BUILD_TARGET)gitw $(GITW)

5
cmd/gitw/main.go Normal file
View File

@@ -0,0 +1,5 @@
package main
func main() {
}

0
configs/gitw.json Normal file
View File

0
docs/gitw.1 Normal file
View File

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module gitea.yves-biener.de/yves-biener/gitwarrior
go 1.21.1

1
internal/gitea/issue.go Normal file
View File

@@ -0,0 +1 @@
package gitea

View File

@@ -0,0 +1 @@
package gitea

View File

@@ -0,0 +1 @@
package gitea

View File

@@ -0,0 +1 @@
package gitea

1
internal/gitw/cli.go Normal file
View File

@@ -0,0 +1 @@
package gitw

1
internal/gitw/flags.go Normal file
View File

@@ -0,0 +1 @@
package gitw

View File

@@ -0,0 +1 @@
package taskwarrior

View File

@@ -0,0 +1 @@
package taskwarrior