Go client for the Write.as API https://developers.write.as
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
219 B

  1. package writeas
  2. // Category represents a post tag with additional metadata, like a title and slug.
  3. type Category struct {
  4. Hashtag string `json:"hashtag"`
  5. Slug string `json:"slug"`
  6. Title string `json:"title"`
  7. }