Skip to content

Commit

Permalink
casing
Browse files Browse the repository at this point in the history
  • Loading branch information
kernelsam committed Feb 23, 2024
1 parent a023e27 commit 6d513fc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ import (
"bytes"
"encoding/json"
"fmt"
"github.com/pkg/errors"
"github.com/senzing/git-action-slack-notification/configuration"
"log"
"net/http"

"github.com/pkg/errors"
"github.com/senzing/git-action-slack-notification/configuration"
)

type Message struct {
Expand Down Expand Up @@ -69,7 +70,7 @@ func main() {

slackMessage = new(Message)
slackMessage.Username = config.SlackUsername
slackMessage.IconURL = config.SlackIconUrl
slackMessage.IconURL = config.SlackIconURL
slackMessage.Channel = config.SlackChannel
slackMessage.Attachments = []Attachment{
{
Expand Down

0 comments on commit 6d513fc

Please sign in to comment.