Go client for the Write.as API https://developers.write.as
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

9 satır
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. }