Skip to content

Commit

Permalink
treewide: Rename the repo (#3)
Browse files Browse the repository at this point in the history
The name `signal-api-receiver` makes more sense than `signal-receiver`
and should help with discovery.
  • Loading branch information
kalbasit authored Nov 17, 2024
1 parent ee577e8 commit 20af42c
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
# list of Docker images to use as base name for tags
images: |
kalbasit/signal-receiver
kalbasit/signal-api-receiver
# generate Docker tags based on the following events/attributes
tags: |
type=ref,event=branch
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ go.work.sum

# Binaries
/main
/signal-receiver
/signal-api-receiver
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# signal-receiver
# signal-api-receiver
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/kalbasit/signal-receiver
module github.com/kalbasit/signal-api-receiver

go 1.22.6

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"net/http"
"net/url"

"github.com/kalbasit/signal-receiver/receiver"
"github.com/kalbasit/signal-receiver/server"
"github.com/kalbasit/signal-api-receiver/receiver"
"github.com/kalbasit/signal-api-receiver/server"
)

var signalApiURL string
Expand Down
2 changes: 1 addition & 1 deletion server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"net/http"

"github.com/kalbasit/signal-receiver/receiver"
"github.com/kalbasit/signal-api-receiver/receiver"
)

const usage = `
Expand Down
2 changes: 1 addition & 1 deletion server/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"reflect"
"testing"

"github.com/kalbasit/signal-receiver/receiver"
"github.com/kalbasit/signal-api-receiver/receiver"
)

type mockClient struct {
Expand Down

0 comments on commit 20af42c

Please sign in to comment.