1
0
Fork 0
mirror of https://github.com/alice-lg/birdwatcher.git synced 2025-03-09 00:00:05 +01:00

moved import for working build

This commit is contained in:
Matthias Hannig 2016-11-11 15:33:08 +01:00
parent e233bd68fe
commit 6a01897d04
7 changed files with 10 additions and 6 deletions

4
.gitignore vendored
View file

@ -2,3 +2,7 @@
*.swp
*.swo
birdwatcher
birdwatcher-*

View file

@ -6,8 +6,8 @@ import (
"net/http"
"strings"
"github.com/ecix/birdwatcher/endpoints"
"github.com/julienschmidt/httprouter"
"github.com/mchackorg/birdwatcher/endpoints"
)
func makeRouter() *httprouter.Router {

View file

@ -4,8 +4,8 @@ import (
"encoding/json"
"net/http"
"github.com/ecix/birdwatcher/bird"
"github.com/julienschmidt/httprouter"
"github.com/mchackorg/birdwatcher/bird"
)
func Endpoint(wrapped func(httprouter.Params) bird.Parsed) httprouter.Handle {

View file

@ -1,8 +1,8 @@
package endpoints
import (
"github.com/ecix/birdwatcher/bird"
"github.com/julienschmidt/httprouter"
"github.com/mchackorg/birdwatcher/bird"
)
func Protocols(ps httprouter.Params) bird.Parsed {

View file

@ -1,8 +1,8 @@
package endpoints
import (
"github.com/ecix/birdwatcher/bird"
"github.com/julienschmidt/httprouter"
"github.com/mchackorg/birdwatcher/bird"
)
func ProtoRoutes(ps httprouter.Params) bird.Parsed {

View file

@ -1,8 +1,8 @@
package endpoints
import (
"github.com/ecix/birdwatcher/bird"
"github.com/julienschmidt/httprouter"
"github.com/mchackorg/birdwatcher/bird"
)
func Status(ps httprouter.Params) bird.Parsed {

View file

@ -1,8 +1,8 @@
package endpoints
import (
"github.com/ecix/birdwatcher/bird"
"github.com/julienschmidt/httprouter"
"github.com/mchackorg/birdwatcher/bird"
)
func Symbols(ps httprouter.Params) bird.Parsed {