Added boilerplate
This commit is contained in:
parent
30e6330bd6
commit
cf1cc31a12
4 changed files with 37 additions and 0 deletions
17
.editorconfig
Normal file
17
.editorconfig
Normal 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
2
.gitignore
vendored
|
@ -13,3 +13,5 @@
|
|||
|
||||
# Dependency directories (remove the comment below to include it)
|
||||
# vendor/
|
||||
|
||||
/zeit
|
||||
|
|
3
go.mod
Normal file
3
go.mod
Normal file
|
@ -0,0 +1,3 @@
|
|||
module github.com/mrusme/zeit
|
||||
|
||||
go 1.15
|
15
zeit.go
Normal file
15
zeit.go
Normal file
|
@ -0,0 +1,15 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
// "fmt"
|
||||
"os"
|
||||
// "context"
|
||||
// "time"
|
||||
// "log"
|
||||
// "flag"
|
||||
)
|
||||
|
||||
|
||||
func main() {
|
||||
os.Exit(0)
|
||||
}
|
Loading…
Reference in a new issue