diff --git a/README.md b/README.md index c7337c5..2196d51 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ regular binaries, which means deployment and maintenance might be more convenient. Our version also has a few more capabilities, as you will -discover when looking at [the modules section](https://github.com/ecix/birdwatcher/blob/master/etc/ecix/birdwatcher.conf) +discover when looking at [the modules section](https://github.com/alice-lg/birdwatcher/blob/master/etc/ecix/birdwatcher.conf) of the config. ## Installation @@ -135,11 +135,11 @@ We do not currently support other deployment methods. ## Configuration An example config with sane defaults is provided in -[etc/ecix/birdwatcher.conf](https://github.com/ecix/birdwatcher/blob/master/etc/ecix/birdwatcher.conf). +[etc/ecix/birdwatcher.conf](https://github.com/alice-lg/birdwatcher/blob/master/etc/ecix/birdwatcher.conf). You should be able to use it out of the box. If you need to change it, it is well-commented and hopefully intuitive. If you do not know how to configure it, please consider opening -[an issue](https://github.com/ecix/birdwatcher/issues/new). +[an issue](https://github.com/alice-lg/birdwatcher/issues/new). ## How diff --git a/birdwatcher.go b/birdwatcher.go index 71eb24b..358b3d3 100644 --- a/birdwatcher.go +++ b/birdwatcher.go @@ -6,8 +6,8 @@ import ( "net/http" "strings" - "github.com/ecix/birdwatcher/bird" - "github.com/ecix/birdwatcher/endpoints" + "github.com/alice-lg/birdwatcher/bird" + "github.com/alice-lg/birdwatcher/endpoints" "github.com/julienschmidt/httprouter" ) diff --git a/config.go b/config.go index 8a5c394..d4e5fda 100644 --- a/config.go +++ b/config.go @@ -10,8 +10,8 @@ import ( "github.com/BurntSushi/toml" "github.com/imdario/mergo" - "github.com/ecix/birdwatcher/bird" - "github.com/ecix/birdwatcher/endpoints" + "github.com/alice-lg/birdwatcher/bird" + "github.com/alice-lg/birdwatcher/endpoints" ) type Config struct { diff --git a/endpoints/endpoint.go b/endpoints/endpoint.go index 50769c7..5ca4a04 100644 --- a/endpoints/endpoint.go +++ b/endpoints/endpoint.go @@ -10,7 +10,7 @@ import ( "encoding/json" "net/http" - "github.com/ecix/birdwatcher/bird" + "github.com/alice-lg/birdwatcher/bird" "github.com/julienschmidt/httprouter" ) diff --git a/endpoints/protocols.go b/endpoints/protocols.go index cc1b30a..da04438 100644 --- a/endpoints/protocols.go +++ b/endpoints/protocols.go @@ -3,7 +3,7 @@ package endpoints import ( "net/http" - "github.com/ecix/birdwatcher/bird" + "github.com/alice-lg/birdwatcher/bird" "github.com/julienschmidt/httprouter" ) diff --git a/endpoints/routes.go b/endpoints/routes.go index 1a17ffa..5aadcb5 100644 --- a/endpoints/routes.go +++ b/endpoints/routes.go @@ -4,7 +4,7 @@ import ( "fmt" "net/http" - "github.com/ecix/birdwatcher/bird" + "github.com/alice-lg/birdwatcher/bird" "github.com/julienschmidt/httprouter" ) diff --git a/endpoints/status.go b/endpoints/status.go index ae9e5a5..fd18eb4 100644 --- a/endpoints/status.go +++ b/endpoints/status.go @@ -3,7 +3,7 @@ package endpoints import ( "net/http" - "github.com/ecix/birdwatcher/bird" + "github.com/alice-lg/birdwatcher/bird" "github.com/julienschmidt/httprouter" ) diff --git a/endpoints/symbols.go b/endpoints/symbols.go index 4bcc15a..6a8d41d 100644 --- a/endpoints/symbols.go +++ b/endpoints/symbols.go @@ -3,7 +3,7 @@ package endpoints import ( "net/http" - "github.com/ecix/birdwatcher/bird" + "github.com/alice-lg/birdwatcher/bird" "github.com/julienschmidt/httprouter" )