Fix breathe endpoint typo

This commit is contained in:
Ryan Cavicchioni 2021-03-20 21:24:06 -05:00
parent 1e97025bca
commit 52f610489f
Signed by: chill9
GPG Key ID: 877EEDAF9245103D
1 changed files with 1 additions and 1 deletions

View File

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