add package
This commit is contained in:
parent
32b2e39e91
commit
edc3ca48ae
2 changed files with 8 additions and 2 deletions
3
main.go
3
main.go
|
@ -7,6 +7,7 @@ import (
|
||||||
"html/template"
|
"html/template"
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
"log"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
)
|
)
|
||||||
|
@ -46,7 +47,7 @@ func loadConfig() (ret []Package, err error) {
|
||||||
func main() {
|
func main() {
|
||||||
packages, err := loadConfig()
|
packages, err := loadConfig()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Errorf("%s\n", err)
|
log.Fatalf("%s\n", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -290,7 +290,12 @@
|
||||||
"Repo": "https://github.com/paultag/go-ais",
|
"Repo": "https://github.com/paultag/go-ais",
|
||||||
"Url": "https://github.com/paultag/go-ais"
|
"Url": "https://github.com/paultag/go-ais"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"Packages": [],
|
||||||
|
"Path": "/go/diskring",
|
||||||
|
"Repo": "https://github.com/paultag/go-diskring",
|
||||||
|
"Url": "https://github.com/paultag/go-diskring"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"Packages": [],
|
"Packages": [],
|
||||||
"Path": "/go/rf",
|
"Path": "/go/rf",
|
||||||
|
|
Loading…
Reference in a new issue