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.

21 líneas
494B

  1. package livereload
  2. type (
  3. hello struct {
  4. Command string `json:"command"`
  5. Protocols []string `json:"protocols"`
  6. ServerName string `json:"serverName"`
  7. }
  8. alert struct {
  9. Command string `json:"command"`
  10. Message string `json:"message"`
  11. }
  12. reload struct {
  13. Command string `json:"command"`
  14. Path string `json:"path"` // as full as possible/known, absolute path preferred, file name only is OK
  15. LiveCSS bool `json:"liveCSS"` // false to disable live CSS refresh
  16. }
  17. )