Publish HTML quickly. https://html.house
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.
 
 
 
 

20 lines
211 B

  1. package htmlhouse
  2. type (
  3. PublicHouse struct {
  4. ID string
  5. Title string
  6. ThumbURL string
  7. }
  8. HouseStats struct {
  9. ID string
  10. Stats []Stat
  11. }
  12. Stat struct {
  13. Data string
  14. Label string
  15. }
  16. )