diff --git a/main.go b/main.go index e90d284..97e751d 100644 --- a/main.go +++ b/main.go @@ -11,8 +11,7 @@ import ( func output(client *resty.Client, url string, scale, width, height uint, arr [][]Cell) { goterm.MoveCursor(1, 4) // Prepare instructions for matrix - instructions := make([]interface{}, 1) - instructions[0] = Clear{Endpoint: CLEAR} + instructions := make([]interface{}, 0) // Append all live cells as pixel instructions for j := 0; j < int(height/scale); j++ { for i := 0; i < int(width/scale); i++ { diff --git a/types.go b/types.go index a5299e3..762ec5c 100644 --- a/types.go +++ b/types.go @@ -11,7 +11,6 @@ const ( UPDATE Endpoint = "update" PIXEL Endpoint = "pixel" COLOR Endpoint = "color" - CLEAR Endpoint = "clear" ) type Rectangle struct { @@ -22,10 +21,6 @@ type Rectangle struct { Endpoint Endpoint `json:"endpoint"` } -type Clear struct { - Endpoint Endpoint `json:"endpoint"` -} - type Update struct { Endpoint Endpoint `json:"endpoint"` }