mirror of
https://github.com/go-shiori/shiori.git
synced 2025-01-31 12:18:30 +08:00
Initial commit
This commit is contained in:
commit
0bddceeb36
2 changed files with 14 additions and 0 deletions
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# Exclude config file
|
||||||
|
.vscode/
|
||||||
|
*.toml
|
||||||
|
|
||||||
|
# Exclude generated file
|
||||||
|
shiori*
|
||||||
|
*.db
|
7
main.go
Normal file
7
main.go
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
fmt.Println("Hello world")
|
||||||
|
}
|
Loading…
Reference in a new issue