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)) } )