Added boilerplate

This commit is contained in:
マリウス 2020-10-10 19:37:37 +01:00
parent 30e6330bd6
commit cf1cc31a12
No known key found for this signature in database
GPG Key ID: C228EF0A530AF06F
4 changed files with 37 additions and 0 deletions

17
.editorconfig Normal file
View File

@ -0,0 +1,17 @@
root = true
[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
indent_style = space
indent_size = 2
insert_final_newline = true
max_line = 80
[*.{md,markdown}]
trim_trailing_whitespace = false
[{Makefile,Makefile.*}]
indent_style = tab
indent_size = 2

2
.gitignore vendored
View File

@ -13,3 +13,5 @@
# Dependency directories (remove the comment below to include it)
# vendor/
/zeit

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module github.com/mrusme/zeit
go 1.15

15
zeit.go Normal file
View File

@ -0,0 +1,15 @@
package main
import (
// "fmt"
"os"
// "context"
// "time"
// "log"
// "flag"
)
func main() {
os.Exit(0)
}