Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

21 line
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. )