Clean api code

This commit is contained in:
Unknown 2014-05-05 13:08:01 -04:00
parent 5f653898f3
commit c1eb4d894a
20 changed files with 277 additions and 121 deletions

View file

@ -7,6 +7,11 @@ package base
type (
// Type TmplData represents data in the templates.
TmplData map[string]interface{}
ApiJsonErr struct {
Message string `json:"message"`
DocUrl string `json:"documentation_url"`
}
)
var GoGetMetas = make(map[string]bool)