Publish HTML quickly. https://html.house
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

20 líneas
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. )