This commit is contained in:
Piotr Biernat 2021-07-08 22:21:07 +02:00
commit fc4800e70d
3 changed files with 17 additions and 0 deletions

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
run:
go run .
build:
go build .
test:
go test .

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module vegvisir
go 1.13

4
main.go Normal file
View File

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