Rename microsub-server --> ekster

- Server is called eksterd
- Client is called ek
This commit is contained in:
Peter Stuifzand 2018-05-16 17:24:26 +02:00
parent 532bcf016b
commit 26c8295193
14 changed files with 14 additions and 13 deletions

View File

@ -1,5 +1,6 @@
# microsub-server
microsub server
# ekster
a microsub server
Very alpha: no warranty.

View File

@ -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 {

View File

@ -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"
)

View File

@ -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 (

View File

@ -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"
)

View File

@ -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 {

View File

@ -18,7 +18,7 @@
package main
import (
"github.com/pstuifzand/microsub-server/microsub"
"github.com/pstuifzand/ekster/microsub"
)
// NullBackend is the simplest possible backend

View File

@ -7,7 +7,7 @@ import (
"net/http"
"net/url"
"github.com/pstuifzand/microsub-server/microsub"
"github.com/pstuifzand/ekster/microsub"
)
type Client struct {