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
# 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~
*.dll
*.so
*.dylib
# Created by https://www.toptal.com/developers/gitignore/api/web
# Edit at https://www.toptal.com/developers/gitignore?templates=web
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Dependency directories (remove the comment below to include it)
# vendor/
# Go workspace file
go.work
go.work.sum
# env file
.env
### Web ###
*.asp
*.cer
*.csr
*.css
*.htm
*.html
*.js
*.jsp
*.php
*.rss
*.wasm
*.wat
*.xhtml
# 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!");
}