Go client for the Write.as API https://developers.write.as
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

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