Skip to content

Commit

Permalink
move resolver in own package
Browse files Browse the repository at this point in the history
  • Loading branch information
gi8lino committed Jun 18, 2024
1 parent b7271d6 commit f491052
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/alecthomas/kingpin/v2"
)

const version = "0.6.11"
const version = "0.6.12"

//go:embed web
var templates embed.FS
Expand Down
2 changes: 1 addition & 1 deletion pkg/notify/notifier/email.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package notifier
import (
"context"
"fmt"
"heartbeats/pkg/notify/resolver"
"heartbeats/pkg/notify/services/email"
"heartbeats/pkg/notify/utils"
"heartbeats/pkg/resolver"
"time"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/notify/notifier/msteams.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package notifier
import (
"context"
"fmt"
"heartbeats/pkg/notify/resolver"
"heartbeats/pkg/notify/services/msteams"
"heartbeats/pkg/notify/utils"
"heartbeats/pkg/resolver"
"time"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/notify/notifier/slack.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package notifier
import (
"context"
"fmt"
"heartbeats/pkg/notify/resolver"
"heartbeats/pkg/notify/services/slack"
"heartbeats/pkg/notify/utils"
"heartbeats/pkg/resolver"
"time"
)

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit f491052

Please sign in to comment.