Move repo

This commit is contained in:
davidnewhall2 2019-12-28 20:09:40 -08:00
parent bb61340800
commit d6114a77db
3 changed files with 5 additions and 5 deletions

View File

@ -7,9 +7,9 @@ data. The data is provided in a large struct you can consume in your application
This library is designed to PULL data FROM the controller. It has no methods that
update settings or change things on the controller.
[Someone expressed interest](https://github.com/golift/unifi/issues/31) in
[Someone expressed interest](https://github.com/unifi-poller/unifi/issues/31) in
adding methods to update data, and I'm okay with that. I'll even help add them.
[Tell me what you want to do](https://github.com/golift/unifi/issues/new), and we'll make it happen.
[Tell me what you want to do](https://github.com/unifi-poller/unifi/issues/new), and we'll make it happen.
Pull requests, feature requests, code reviews and feedback are welcomed!
@ -18,7 +18,7 @@ Here's a working example:
package main
import "log"
import "golift.io/unifi"
import "github.com/unifi-poller/unifi"
func main() {
c := *unifi.Config{

View File

@ -88,7 +88,7 @@ func (u *Unifi) unmarshalDevice(dev string, data json.RawMessage, v interface{})
json, err := data.MarshalJSON()
u.DebugLog("Failed Payload: %s (marshal err: %v)", json, err)
u.DebugLog("The above payload can prove useful during torubleshooting when you open an Issue:")
u.DebugLog("==- https://github.com/golift/unifi/issues/new -==")
u.DebugLog("==- https://github.com/unifi-poller/unifi/issues/new -==")
}
return err

View File

@ -1,4 +1,4 @@
module golift.io/unifi
module github.com/unifi-poller/unifi
go 1.13