Go client for the Write.as API https://developers.write.as
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

9 wiersze
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. }