1
0
Fork 0

fixed api bug where empty fields weren't being omitted

This commit is contained in:
Christopher Ramey 2019-12-26 16:25:16 -09:00 committed by Christopher Ramey
parent f6d59bcdd8
commit d272cafd2e
2 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
*.swp
qurl
qurl.db

View File

@ -11,9 +11,9 @@ import (
)
type apijson struct {
URL string `json:"url",omitempty`
Exists bool `json:"exists",omitempty`
Error string `json:"error",omitempty`
URL string `json:"url,omitempty"`
Exists bool `json:"exists,omitempty"`
Error string `json:"error,omitempty"`
}
func (ctx *RootHandler) ServeAPI(w http.ResponseWriter, r *http.Request) {