1
1
Fork 0
mirror of https://github.com/go-shiori/shiori.git synced 2025-02-25 08:24:56 +08:00

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")
}