(path string)
| 111 | } |
| 112 | |
| 113 | func sendReloadNotification(path string) { |
| 114 | msg, _ := json.Marshal(fiber.Map{ |
| 115 | "type": "file-changed-externally", |
| 116 | "timestamp": time.Now().Unix(), |
| 117 | }) |
| 118 | |
| 119 | utils.SendToAll(path, websocket.TextMessage, msg) |
| 120 | } |
no test coverage detected