diff --git a/cmd/mstdn/cmd_stream.go b/cmd/mstdn/cmd_stream.go index c922667..80747c4 100644 --- a/cmd/mstdn/cmd_stream.go +++ b/cmd/mstdn/cmd_stream.go @@ -13,6 +13,7 @@ import ( "github.com/urfave/cli" ) +// SimpleJSON is a struct for output JSON for data to be simple used type SimpleJSON struct { ID int64 `json:"id"` Username string `json:"username"` diff --git a/notification.go b/notification.go index 475b1b4..a25f3f0 100644 --- a/notification.go +++ b/notification.go @@ -26,7 +26,7 @@ func (c *Client) GetNotifications(ctx context.Context) ([]*Notification, error) return notifications, nil } -// GetNotifications return notification. +// GetNotification return notification. func (c *Client) GetNotification(ctx context.Context, id int64) (*Notification, error) { var notification Notification err := c.doAPI(ctx, http.MethodGet, fmt.Sprintf("/api/v1/notifications/%d", id), nil, ¬ification, nil) diff --git a/report.go b/report.go index c4b32ef..1e6debf 100644 --- a/report.go +++ b/report.go @@ -23,10 +23,10 @@ func (c *Client) GetReports(ctx context.Context) ([]*Report, error) { return reports, nil } -// Report reports the report -func (c *Client) Report(ctx context.Context, accountId int64, ids []int64, comment string) (*Report, error) { +// Report reports the report +func (c *Client) Report(ctx context.Context, accountID int64, ids []int64, comment string) (*Report, error) { params := url.Values{} - params.Set("account_id", fmt.Sprint(accountId)) + params.Set("account_id", fmt.Sprint(accountID)) for _, id := range ids { params.Add("status_ids[]", fmt.Sprint(id)) } diff --git a/status.go b/status.go index 0b7c8a0..c23c731 100644 --- a/status.go +++ b/status.go @@ -202,7 +202,7 @@ func (c *Client) Search(ctx context.Context, q string, resolve bool) (*Results, return &results, nil } -// PostMedia upload a media attachment. +// UploadMedia upload a media attachment. func (c *Client) UploadMedia(ctx context.Context, file string) (*Attachment, error) { var attachment Attachment err := c.doAPI(ctx, http.MethodPost, "/api/v1/media", file, &attachment, nil)