mirror of
https://github.com/jimeh/ozu.io.git
synced 2026-02-19 08:06:39 +00:00
12 lines
237 B
Go
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"`
|
|
}
|