chore(go): rename

This commit is contained in:
Jan Rundshagen 2024-07-08 15:18:32 +02:00 committed by Jan O. Rundshagen
parent 95cbb7ff4b
commit 89dba8455b
61 changed files with 126 additions and 126 deletions

View file

@ -7,7 +7,7 @@ import (
"strconv"
"time"
"github.com/containrrr/watchtower/pkg/types"
"github.com/beatkind/watchtower/pkg/types"
)
type previewData struct {

View file

@ -3,7 +3,7 @@ package data
import (
"sort"
"github.com/containrrr/watchtower/pkg/types"
"github.com/beatkind/watchtower/pkg/types"
)
// State is the outcome of a container in a session report

View file

@ -1,6 +1,6 @@
package data
import wt "github.com/containrrr/watchtower/pkg/types"
import wt "github.com/beatkind/watchtower/pkg/types"
type containerStatus struct {
containerID wt.ContainerID

View file

@ -5,8 +5,8 @@ import (
"strings"
"text/template"
"github.com/containrrr/watchtower/pkg/notifications/preview/data"
"github.com/containrrr/watchtower/pkg/notifications/templates"
"github.com/beatkind/watchtower/pkg/notifications/preview/data"
"github.com/beatkind/watchtower/pkg/notifications/templates"
)
func Render(input string, states []data.State, loglevels []data.LogLevel) (string, error) {