wip: feat(task): defined concrete type for user group

wip: feat(version): added placeholder file + update gitignore
wip: chore: removed unnecessary files
This commit is contained in:
2024-01-11 13:13:33 +11:00
parent cdc66a2c22
commit 1926598c0f
10 changed files with 45 additions and 30 deletions

View File

@@ -3,7 +3,7 @@ all:
go build -v
clean:
rm version.txt
echo "dev" > version.txt
go clean -i -cache -testcache
install:

1
cmd/wingmate/version.txt Normal file
View File

@@ -0,0 +1 @@
dev

View File

@@ -1,6 +1,7 @@
package main
import (
_ "embed"
"os"
"gitea.suyono.dev/suyono/wingmate"
@@ -8,6 +9,11 @@ import (
wminit "gitea.suyono.dev/suyono/wingmate/init"
)
var (
//go:embed version.txt
version string
)
func main() {
var (
err error