This commit is contained in:
2025-11-29 11:16:57 +01:00
parent 35b63a8a6e
commit 781a499a6c
4 changed files with 10 additions and 17 deletions

19
.gitignore vendored
View File

@@ -1,27 +1,12 @@
# ---> Go
# If you prefer the allow list template instead of the deny list, see community template:
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
#
# Binaries for programs and plugins
*.exe *.exe
*.exe~ *.exe~
*.dll *.dll
*.so *.so
*.dylib *.dylib
# Test binary, built with `go test -c`
*.test *.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out *.out
# Dependency directories (remove the comment below to include it)
# vendor/
# Go workspace file
go.work go.work
go.work.sum go.work.sum
# env file
.env .env
.idea/*
.idea

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module homestead/homestead_to_go
go 1.25.4

0
go.sum Normal file
View File

5
main.go Normal file
View File

@@ -0,0 +1,5 @@
package main
// $ git config user.name <user>
// $ git config user.email <email>
// $ go mod tidy; go mod download