Initial commit

This commit is contained in:
Radhi Fadlillah 2018-01-26 17:40:01 +07:00
commit 0bddceeb36
2 changed files with 14 additions and 0 deletions

7
.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
# Exclude config file
.vscode/
*.toml
# Exclude generated file
shiori*
*.db

7
main.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello world")
}