initial commit
This commit is contained in:
18
endpoints.go
Normal file
18
endpoints.go
Normal file
@ -0,0 +1,18 @@
|
||||
package lifx
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"net/url"
|
||||
"path"
|
||||
)
|
||||
|
||||
func BuildURL(rawurl, rawpath string) string {
|
||||
u, _ := url.Parse(rawurl)
|
||||
u.Path = path.Join(u.Path, rawpath)
|
||||
return u.String()
|
||||
}
|
||||
|
||||
var (
|
||||
Endpoint = "https://api.lifx.com/v1"
|
||||
EndpointState = func(selector string) string { return BuildURL(Endpoint, fmt.Sprintf("/lights/%s/state", selector)) }
|
||||
)
|
Reference in New Issue
Block a user