Go client for the Write.as API https://developers.write.as
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

9 řádky
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. }