From 52f610489f3bf095a5684ec05717f1aab3238fff Mon Sep 17 00:00:00 2001 From: Ryan Cavicchioni Date: Sat, 20 Mar 2021 21:24:06 -0500 Subject: [PATCH] Fix breathe endpoint typo --- endpoints.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/endpoints.go b/endpoints.go index 55ecd51..917a08e 100644 --- a/endpoints.go +++ b/endpoints.go @@ -33,6 +33,6 @@ var ( return BuildURL(Endpoint, fmt.Sprintf("/lights/%s/toggle", selector)) } EndpointBreathe = func(selector string) string { - return BuildURL(Endpoint, fmt.Sprintf("/lights/%s/effect/breathe", selector)) + return BuildURL(Endpoint, fmt.Sprintf("/lights/%s/effects/breathe", selector)) } )