260630_224540

This commit is contained in:
Maciej J. Bowszys 2026-06-30 22:45:40 +02:00
parent a2d00a212d
commit fc36cfa4ea
3 changed files with 17 additions and 36 deletions

42
.gitignore vendored
View File

@ -1,27 +1,19 @@
# ---> Go # Created by https://www.toptal.com/developers/gitignore/api/web
# If you prefer the allow list template instead of the deny list, see community template: # Edit at https://www.toptal.com/developers/gitignore?templates=web
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
#
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, built with `go test -c` ### Web ###
*.test *.asp
*.cer
# Output of the go coverage tool, specifically when used with LiteIDE *.csr
*.out *.css
*.htm
# Dependency directories (remove the comment below to include it) *.html
# vendor/ *.js
*.jsp
# Go workspace file *.php
go.work *.rss
go.work.sum *.wasm
*.wat
# env file *.xhtml
.env
# End of https://www.toptal.com/developers/gitignore/api/web

3
go.mod
View File

@ -1,3 +0,0 @@
module git.makemore.cloud/mjbow/moira_db
go 1.26.4

View File

@ -1,8 +0,0 @@
package main
import "fmt"
func main(){
fmt.Println("Welcome to moira_db!");
}