Files
ozu.io/web/response.go
2016-07-18 01:27:22 +01:00

12 lines
237 B
Go

package web
//go:generate easyjson -all response.go
// Response contains shortened URL info.
type Response struct {
UID string `json:"uid"`
URL string `json:"url"`
Target string `json:"target"`
Error string `json:"error"`
}