Browse Source

Properly load repo details in an index

pull/8/head
Daniel Martí 11 years ago
parent
commit
baf62cc66c
  1. 4
      index.go

4
index.go

@ -18,7 +18,6 @@ import (
)
type Index struct {
Apps []App `xml:"application"`
Repo struct {
Name string `xml:"name,attr"`
PubKey string `xml:"pubkey,attr"`
@ -27,7 +26,8 @@ type Index struct {
Version int `xml:"version,attr"`
MaxAge int `xml:"maxage,attr"`
Description string `xml:"description"`
} `repo`
} `xml:"repo"`
Apps []App `xml:"application"`
}
type CommaList []string

Loading…
Cancel
Save