Merge branch 'master' of dm/vain into master

This commit is contained in:
Stephen McQuay 2016-02-16 23:23:16 -08:00 committed by Gogs
commit cc8e0914b8
1 changed files with 17 additions and 1 deletions

18
vain.go
View File

@ -3,7 +3,10 @@
// The executable, cmd/ysvd, is located in the respective subdirectory.
package vain
import "fmt"
import (
"encoding/json"
"fmt"
)
type vcs int
@ -62,3 +65,16 @@ func (p Package) String() string {
p.Repo,
)
}
func (p *Package) UnmarshalJSON(b []byte) (err error) {
pkg := struct {
Vcs string
Repo string
}{}
err = json.Unmarshal(b, &pkg)
if err != nil {
return err
}
p.Vcs, p.Repo = labelToVcs[pkg.Vcs], pkg.Repo
return nil
}