diff --git a/README.md b/README.md index 06fbde3..3c50deb 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ -# microsub-server -microsub server +# ekster + +a microsub server Very alpha: no warranty. diff --git a/cmd/client/main.go b/cmd/ek/main.go similarity index 97% rename from cmd/client/main.go rename to cmd/ek/main.go index bfe5d68..d1008bb 100644 --- a/cmd/client/main.go +++ b/cmd/ek/main.go @@ -7,9 +7,9 @@ import ( "net/url" "os" - "github.com/pstuifzand/microsub-server/microsub" - "github.com/pstuifzand/microsub-server/pkg/client" - "github.com/pstuifzand/microsub-server/pkg/indieauth" + "github.com/pstuifzand/ekster/microsub" + "github.com/pstuifzand/ekster/pkg/client" + "github.com/pstuifzand/ekster/pkg/indieauth" ) func loadAuth(c *client.Client, filename string) error { diff --git a/cmd/server/auth.go b/cmd/eksterd/auth.go similarity index 100% rename from cmd/server/auth.go rename to cmd/eksterd/auth.go diff --git a/cmd/server/fetch.go b/cmd/eksterd/fetch.go similarity index 99% rename from cmd/server/fetch.go rename to cmd/eksterd/fetch.go index 1d03082..564b865 100644 --- a/cmd/server/fetch.go +++ b/cmd/eksterd/fetch.go @@ -35,7 +35,7 @@ import ( "time" "github.com/garyburd/redigo/redis" - "github.com/pstuifzand/microsub-server/microsub" + "github.com/pstuifzand/ekster/microsub" "willnorris.com/go/microformats" ) diff --git a/cmd/server/incoming.go b/cmd/eksterd/incoming.go similarity index 100% rename from cmd/server/incoming.go rename to cmd/eksterd/incoming.go diff --git a/cmd/server/jsonfeed.go b/cmd/eksterd/jsonfeed.go similarity index 100% rename from cmd/server/jsonfeed.go rename to cmd/eksterd/jsonfeed.go diff --git a/cmd/server/main.go b/cmd/eksterd/main.go similarity index 98% rename from cmd/server/main.go rename to cmd/eksterd/main.go index 25bf56e..83faa6f 100644 --- a/cmd/server/main.go +++ b/cmd/eksterd/main.go @@ -33,8 +33,8 @@ import ( "cloud.google.com/go/profiler" "github.com/garyburd/redigo/redis" - "github.com/pstuifzand/microsub-server/microsub" - "github.com/pstuifzand/microsub-server/pkg/util" + "github.com/pstuifzand/ekster/microsub" + "github.com/pstuifzand/ekster/pkg/util" ) var ( diff --git a/cmd/server/memory.go b/cmd/eksterd/memory.go similarity index 99% rename from cmd/server/memory.go rename to cmd/eksterd/memory.go index cfeddb1..1a96157 100644 --- a/cmd/server/memory.go +++ b/cmd/eksterd/memory.go @@ -29,8 +29,8 @@ import ( "time" "github.com/garyburd/redigo/redis" - "github.com/pstuifzand/microsub-server/microsub" - "github.com/pstuifzand/microsub-server/pkg/feedbin" + "github.com/pstuifzand/ekster/microsub" + "github.com/pstuifzand/ekster/pkg/feedbin" "willnorris.com/go/microformats" ) diff --git a/cmd/server/micropub.go b/cmd/eksterd/micropub.go similarity index 96% rename from cmd/server/micropub.go rename to cmd/eksterd/micropub.go index 97ce7d1..d151111 100644 --- a/cmd/server/micropub.go +++ b/cmd/eksterd/micropub.go @@ -7,7 +7,7 @@ import ( "net/http" "github.com/garyburd/redigo/redis" - "github.com/pstuifzand/microsub-server/microsub" + "github.com/pstuifzand/ekster/microsub" ) type micropubHandler struct { diff --git a/cmd/server/null.go b/cmd/eksterd/null.go similarity index 97% rename from cmd/server/null.go rename to cmd/eksterd/null.go index 11d8349..62ddbf6 100644 --- a/cmd/server/null.go +++ b/cmd/eksterd/null.go @@ -18,7 +18,7 @@ package main import ( - "github.com/pstuifzand/microsub-server/microsub" + "github.com/pstuifzand/ekster/microsub" ) // NullBackend is the simplest possible backend diff --git a/cmd/server/simplify.go b/cmd/eksterd/simplify.go similarity index 100% rename from cmd/server/simplify.go rename to cmd/eksterd/simplify.go diff --git a/cmd/server/simplify_test.go b/cmd/eksterd/simplify_test.go similarity index 100% rename from cmd/server/simplify_test.go rename to cmd/eksterd/simplify_test.go diff --git a/cmd/server/tests/tantek-in-reply-to.html b/cmd/eksterd/tests/tantek-in-reply-to.html similarity index 100% rename from cmd/server/tests/tantek-in-reply-to.html rename to cmd/eksterd/tests/tantek-in-reply-to.html diff --git a/pkg/client/requests.go b/pkg/client/requests.go index fa22656..dccebc6 100644 --- a/pkg/client/requests.go +++ b/pkg/client/requests.go @@ -7,7 +7,7 @@ import ( "net/http" "net/url" - "github.com/pstuifzand/microsub-server/microsub" + "github.com/pstuifzand/ekster/microsub" ) type Client struct {