ducky/subscriptions

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

14:fb2c0e498e37 Go to Latest

ducky/subscriptions/api/response.go

Update with comments for all exported functions. We now have golint-approved comments for all the exported functions in the subscriptions package. Next challenge: all the sub-packages!

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