ducky/subscriptions

Paddy 2015-09-27 Parent:36e90e828dd0 Child:b063bc0a6e84

13:1ff031bebf9e Go to Latest

ducky/subscriptions/api/response.go

Add golint comments. Comment on some more of our exported types, functions, and variables, both to make golint happy and because uncommented code never ever ends well.

History
1 package api
3 import (
4 "code.secondbit.org/api.hg"
5 "code.secondbit.org/ducky/subscriptions.hg"
6 )
8 type Response struct {
9 Subscriptions []subscriptions.Subscription `json:"subscriptions,omitempty"`
10 Errors []api.RequestError `json:"errors,omitempty"`
11 }