makefile
This commit is contained in:
parent
ffea4ddacd
commit
87f408efb5
2
.gitignore
vendored
2
.gitignore
vendored
@ -25,3 +25,5 @@ go.work.sum
|
||||
.env
|
||||
|
||||
.direnv
|
||||
|
||||
tmp
|
||||
|
7
cmd/main.go
Normal file
7
cmd/main.go
Normal file
@ -0,0 +1,7 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("Hello, world")
|
||||
}
|
@ -31,6 +31,8 @@
|
||||
|
||||
# https://github.com/golangci/golangci-lint
|
||||
golangci-lint
|
||||
|
||||
sqlite
|
||||
];
|
||||
};
|
||||
});
|
||||
|
2
go.mod
2
go.mod
@ -1,3 +1,5 @@
|
||||
module gitea.michaelthomson.dev/mthomson/habits
|
||||
|
||||
go 1.22.9
|
||||
|
||||
require github.com/mattn/go-sqlite3 v1.14.24 // indirect
|
||||
|
2
go.sum
Normal file
2
go.sum
Normal file
@ -0,0 +1,2 @@
|
||||
github.com/mattn/go-sqlite3 v1.14.24 h1:tpSp2G2KyMnnQu99ngJ47EIkWVmliIizyZBfPrBWDRM=
|
||||
github.com/mattn/go-sqlite3 v1.14.24/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=
|
Loading…
x
Reference in New Issue
Block a user