Skip to content

Commit

Permalink
module name fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
pilinux committed Jan 9, 2022
1 parent 94d8ecb commit 8a4e3d7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
## Real-time notifications from [Postmark][11] [webhooks][12]

⚡ Receive notifications via webhooks

⚡ Save events in MySQL / PostgreSQL / SQLite

### Best use-case
Expand All @@ -17,7 +18,7 @@ sending transactional emails to a fake/bad email address

### Features

Version: `0.1.0`
Version: `0.1.1`

| Message type | Supported |
| ------------- | ------------------ |
Expand All @@ -28,7 +29,7 @@ Version: `0.1.0`
### Setup

- You need a MySQL / PostgreSQL instance, or you can use SQLite
- Download the binary `go install github.com/piLinux/postmark@latest`
- Download the binary `go install github.com/pilinux/postmark@latest`
- Create a free project on [Sentry][13] to track errors
- Choose `Go` as the platform
- Save the `DNS` (format: `https://secret_code@abc.ingest.sentry.io/secret_number`)
Expand Down
2 changes: 1 addition & 1 deletion controller/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package controller
import (
"net/http"

"github.com/piLinux/postmark/model"
"github.com/pilinux/postmark/model"

"github.com/gin-gonic/gin"

Expand Down
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/piLinux/postmark
module github.com/pilinux/postmark

go 1.17

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package main
import (
"fmt"

"github.com/piLinux/postmark/controller"
"github.com/piLinux/postmark/migration"
"github.com/pilinux/postmark/controller"
"github.com/pilinux/postmark/migration"

"github.com/pilinux/gorest/config"
"github.com/pilinux/gorest/database"
Expand Down
2 changes: 1 addition & 1 deletion migration/migration.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package migration
import (
"fmt"

"github.com/piLinux/postmark/model"
"github.com/pilinux/postmark/model"

"github.com/pilinux/gorest/config"
"github.com/pilinux/gorest/database"
Expand Down

0 comments on commit 8a4e3d7

Please sign in to comment.