From a9b4d37bd03b4764d3268c3d61434a8e4fbb8896 Mon Sep 17 00:00:00 2001 From: Erik Winter Date: Tue, 17 Sep 2024 07:33:26 +0200 Subject: [PATCH] dommain update --- README.md | 2 +- cmd/android-app/component/configuration.go | 8 ++++---- cmd/android-app/component/tasks.go | 10 +++++----- cmd/android-app/main.go | 4 ++-- cmd/android-app/runner/runner.go | 6 +++--- cmd/cli/command/command.go | 4 ++-- cmd/cli/command/command_test.go | 6 +++--- cmd/cli/command/done.go | 10 +++++----- cmd/cli/command/fetch.go | 10 +++++----- cmd/cli/command/folder.go | 10 +++++----- cmd/cli/command/inbox.go | 10 +++++----- cmd/cli/command/new.go | 8 ++++---- cmd/cli/command/project.go | 10 +++++----- cmd/cli/command/projects.go | 8 ++++---- cmd/cli/command/recur.go | 12 ++++++------ cmd/cli/command/send.go | 10 +++++----- cmd/cli/command/show.go | 6 +++--- cmd/cli/command/sync.go | 12 ++++++------ cmd/cli/command/today.go | 10 +++++----- cmd/cli/command/tomorrow.go | 10 +++++----- cmd/cli/command/update.go | 8 ++++---- cmd/cli/command/week.go | 10 +++++----- cmd/cli/format/format.go | 2 +- cmd/cli/format/table.go | 2 +- cmd/cli/main.go | 4 ++-- cmd/daemon/service.go | 14 +++++++------- go.mod | 4 ++-- go.sum | 19 ++----------------- internal/configuration/configuration.go | 6 +++--- internal/configuration/configuration_test.go | 10 +++++----- internal/process/fetch.go | 4 ++-- internal/process/fetch_test.go | 10 +++++----- internal/process/inbox.go | 4 ++-- internal/process/inbox_test.go | 10 +++++----- internal/process/list.go | 4 ++-- internal/process/list_test.go | 8 ++++---- internal/process/new.go | 4 ++-- internal/process/new_test.go | 8 ++++---- internal/process/projects.go | 2 +- internal/process/projects_test.go | 8 ++++---- internal/process/recur.go | 4 ++-- internal/process/recur_test.go | 12 ++++++------ internal/process/send.go | 4 ++-- internal/process/send_test.go | 10 +++++----- internal/process/update.go | 4 ++-- internal/process/update_test.go | 8 ++++---- internal/storage/dispatch.go | 4 ++-- internal/storage/dispatch_test.go | 8 ++++---- internal/storage/local.go | 2 +- internal/storage/local_test.go | 6 +++--- internal/storage/memory.go | 2 +- internal/storage/memory_test.go | 8 ++++---- internal/storage/remote.go | 4 ++-- internal/storage/remote_test.go | 8 ++++---- internal/storage/sqlite.go | 2 +- internal/task/date_test.go | 4 ++-- internal/task/localtask_test.go | 4 ++-- internal/task/recur_test.go | 4 ++-- internal/task/task.go | 2 +- internal/task/task_test.go | 6 +++--- pkg/msend/memory_test.go | 4 ++-- pkg/mstore/memory_test.go | 4 ++-- pkg/mstore/mstore_test.go | 4 ++-- 63 files changed, 205 insertions(+), 220 deletions(-) diff --git a/README.md b/README.md index b88ee9c..4da2cb1 100644 --- a/README.md +++ b/README.md @@ -2,5 +2,5 @@ Email based task management. Use your ordinary IMAP mailbox as a todo app from your terminal, webmail or a generic email app. -Documentation found in the `/doc` folder can also be read online at [https://code.ewintr.nl/gte](https://code.ewintr.nl/gte) +Documentation found in the `/doc` folder can also be read online at [https://go-mod.ewintr.nl/gte](https://code.ewintr.nl/gte) diff --git a/cmd/android-app/component/configuration.go b/cmd/android-app/component/configuration.go index cbfd7be..f90664b 100644 --- a/cmd/android-app/component/configuration.go +++ b/cmd/android-app/component/configuration.go @@ -1,10 +1,10 @@ package component import ( - "code.ewintr.nl/gte/internal/configuration" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/pkg/msend" - "code.ewintr.nl/gte/pkg/mstore" + "go-mod.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/pkg/msend" + "go-mod.ewintr.nl/gte/pkg/mstore" "fyne.io/fyne/v2" ) diff --git a/cmd/android-app/component/tasks.go b/cmd/android-app/component/tasks.go index 6b8fec4..d0bd97a 100644 --- a/cmd/android-app/component/tasks.go +++ b/cmd/android-app/component/tasks.go @@ -5,11 +5,11 @@ import ( "sort" "time" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" - "code.ewintr.nl/gte/pkg/msend" - "code.ewintr.nl/gte/pkg/mstore" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/pkg/msend" + "go-mod.ewintr.nl/gte/pkg/mstore" ) type Tasks struct { diff --git a/cmd/android-app/main.go b/cmd/android-app/main.go index d76c580..1e5600c 100644 --- a/cmd/android-app/main.go +++ b/cmd/android-app/main.go @@ -1,8 +1,8 @@ package main import ( - "code.ewintr.nl/gte/cmd/android-app/component" - "code.ewintr.nl/gte/cmd/android-app/runner" + "go-mod.ewintr.nl/gte/cmd/android-app/component" + "go-mod.ewintr.nl/gte/cmd/android-app/runner" "fyne.io/fyne/v2/app" "fyne.io/fyne/v2/storage" ) diff --git a/cmd/android-app/runner/runner.go b/cmd/android-app/runner/runner.go index fdbff1f..6449e37 100644 --- a/cmd/android-app/runner/runner.go +++ b/cmd/android-app/runner/runner.go @@ -7,9 +7,9 @@ import ( "sync" "time" - "code.ewintr.nl/gte/cmd/android-app/component" - "code.ewintr.nl/gte/cmd/android-app/screen" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/cmd/android-app/component" + "go-mod.ewintr.nl/gte/cmd/android-app/screen" + "go-mod.ewintr.nl/gte/internal/task" "fyne.io/fyne/v2" "fyne.io/fyne/v2/storage" ) diff --git a/cmd/cli/command/command.go b/cmd/cli/command/command.go index a2f3557..b69675a 100644 --- a/cmd/cli/command/command.go +++ b/cmd/cli/command/command.go @@ -6,8 +6,8 @@ import ( "strconv" "strings" - "code.ewintr.nl/gte/internal/configuration" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/internal/task" ) var ( diff --git a/cmd/cli/command/command_test.go b/cmd/cli/command/command_test.go index 6fd8816..3b47730 100644 --- a/cmd/cli/command/command_test.go +++ b/cmd/cli/command/command_test.go @@ -5,9 +5,9 @@ import ( "strings" "testing" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/cmd/cli/command" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/cmd/cli/command" + "go-mod.ewintr.nl/gte/internal/task" ) func TestParseTaskFieldArgs(t *testing.T) { diff --git a/cmd/cli/command/done.go b/cmd/cli/command/done.go index 3c8fcf5..2978bf6 100644 --- a/cmd/cli/command/done.go +++ b/cmd/cli/command/done.go @@ -1,11 +1,11 @@ package command import ( - "code.ewintr.nl/gte/cmd/cli/format" - "code.ewintr.nl/gte/internal/configuration" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/cmd/cli/format" + "go-mod.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" ) // Done updates a task to be marked done diff --git a/cmd/cli/command/fetch.go b/cmd/cli/command/fetch.go index eb32d6d..067762f 100644 --- a/cmd/cli/command/fetch.go +++ b/cmd/cli/command/fetch.go @@ -3,11 +3,11 @@ package command import ( "fmt" - "code.ewintr.nl/gte/cmd/cli/format" - "code.ewintr.nl/gte/internal/configuration" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/pkg/mstore" + "go-mod.ewintr.nl/gte/cmd/cli/format" + "go-mod.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/pkg/mstore" ) type Fetch struct { diff --git a/cmd/cli/command/folder.go b/cmd/cli/command/folder.go index c708113..d3822cd 100644 --- a/cmd/cli/command/folder.go +++ b/cmd/cli/command/folder.go @@ -4,11 +4,11 @@ import ( "sort" "strings" - "code.ewintr.nl/gte/cmd/cli/format" - "code.ewintr.nl/gte/internal/configuration" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/cmd/cli/format" + "go-mod.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" ) type Folder struct { diff --git a/cmd/cli/command/inbox.go b/cmd/cli/command/inbox.go index c3a5268..6f3be74 100644 --- a/cmd/cli/command/inbox.go +++ b/cmd/cli/command/inbox.go @@ -3,11 +3,11 @@ package command import ( "fmt" - "code.ewintr.nl/gte/cmd/cli/format" - "code.ewintr.nl/gte/internal/configuration" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/pkg/mstore" + "go-mod.ewintr.nl/gte/cmd/cli/format" + "go-mod.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/pkg/mstore" ) type Inbox struct { diff --git a/cmd/cli/command/new.go b/cmd/cli/command/new.go index 6e3d5d1..f2170e2 100644 --- a/cmd/cli/command/new.go +++ b/cmd/cli/command/new.go @@ -1,10 +1,10 @@ package command import ( - "code.ewintr.nl/gte/cmd/cli/format" - "code.ewintr.nl/gte/internal/configuration" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/cmd/cli/format" + "go-mod.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" ) // New sends an action to the NEW folder so it can be updated to a real task later diff --git a/cmd/cli/command/project.go b/cmd/cli/command/project.go index 8593c8b..3ce4abe 100644 --- a/cmd/cli/command/project.go +++ b/cmd/cli/command/project.go @@ -4,11 +4,11 @@ import ( "sort" "strings" - "code.ewintr.nl/gte/cmd/cli/format" - "code.ewintr.nl/gte/internal/configuration" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/cmd/cli/format" + "go-mod.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" ) type Project struct { diff --git a/cmd/cli/command/projects.go b/cmd/cli/command/projects.go index a951088..0cf24a9 100644 --- a/cmd/cli/command/projects.go +++ b/cmd/cli/command/projects.go @@ -3,10 +3,10 @@ package command import ( "fmt" - "code.ewintr.nl/gte/cmd/cli/format" - "code.ewintr.nl/gte/internal/configuration" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/cmd/cli/format" + "go-mod.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" ) type Projects struct { diff --git a/cmd/cli/command/recur.go b/cmd/cli/command/recur.go index 5e20c37..74ed90d 100644 --- a/cmd/cli/command/recur.go +++ b/cmd/cli/command/recur.go @@ -4,12 +4,12 @@ import ( "fmt" "strconv" - "code.ewintr.nl/gte/cmd/cli/format" - "code.ewintr.nl/gte/internal/configuration" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/pkg/msend" - "code.ewintr.nl/gte/pkg/mstore" + "go-mod.ewintr.nl/gte/cmd/cli/format" + "go-mod.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/pkg/msend" + "go-mod.ewintr.nl/gte/pkg/mstore" ) type Recur struct { diff --git a/cmd/cli/command/send.go b/cmd/cli/command/send.go index 5d1cbf7..67edc70 100644 --- a/cmd/cli/command/send.go +++ b/cmd/cli/command/send.go @@ -3,11 +3,11 @@ package command import ( "fmt" - "code.ewintr.nl/gte/cmd/cli/format" - "code.ewintr.nl/gte/internal/configuration" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/pkg/msend" + "go-mod.ewintr.nl/gte/cmd/cli/format" + "go-mod.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/pkg/msend" ) type Send struct { diff --git a/cmd/cli/command/show.go b/cmd/cli/command/show.go index 8dac8c3..684a9e2 100644 --- a/cmd/cli/command/show.go +++ b/cmd/cli/command/show.go @@ -1,9 +1,9 @@ package command import ( - "code.ewintr.nl/gte/cmd/cli/format" - "code.ewintr.nl/gte/internal/configuration" - "code.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/cmd/cli/format" + "go-mod.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/internal/storage" ) type Show struct { diff --git a/cmd/cli/command/sync.go b/cmd/cli/command/sync.go index 68838d9..6fbafc8 100644 --- a/cmd/cli/command/sync.go +++ b/cmd/cli/command/sync.go @@ -4,12 +4,12 @@ import ( "fmt" "time" - "code.ewintr.nl/gte/cmd/cli/format" - "code.ewintr.nl/gte/internal/configuration" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/pkg/msend" - "code.ewintr.nl/gte/pkg/mstore" + "go-mod.ewintr.nl/gte/cmd/cli/format" + "go-mod.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/pkg/msend" + "go-mod.ewintr.nl/gte/pkg/mstore" ) type Sync struct { diff --git a/cmd/cli/command/today.go b/cmd/cli/command/today.go index 4a907e7..d9105f9 100644 --- a/cmd/cli/command/today.go +++ b/cmd/cli/command/today.go @@ -3,11 +3,11 @@ package command import ( "sort" - "code.ewintr.nl/gte/cmd/cli/format" - "code.ewintr.nl/gte/internal/configuration" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/cmd/cli/format" + "go-mod.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" ) // Today lists all task that are due today or past their due date diff --git a/cmd/cli/command/tomorrow.go b/cmd/cli/command/tomorrow.go index e7c4506..144d0f3 100644 --- a/cmd/cli/command/tomorrow.go +++ b/cmd/cli/command/tomorrow.go @@ -3,11 +3,11 @@ package command import ( "sort" - "code.ewintr.nl/gte/cmd/cli/format" - "code.ewintr.nl/gte/internal/configuration" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/cmd/cli/format" + "go-mod.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" ) // Tomorrow lists all tasks that are due tomorrow diff --git a/cmd/cli/command/update.go b/cmd/cli/command/update.go index 3aa8126..73619bb 100644 --- a/cmd/cli/command/update.go +++ b/cmd/cli/command/update.go @@ -1,10 +1,10 @@ package command import ( - "code.ewintr.nl/gte/cmd/cli/format" - "code.ewintr.nl/gte/internal/configuration" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/cmd/cli/format" + "go-mod.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" ) type Update struct { diff --git a/cmd/cli/command/week.go b/cmd/cli/command/week.go index da503f4..e44fd5f 100644 --- a/cmd/cli/command/week.go +++ b/cmd/cli/command/week.go @@ -3,11 +3,11 @@ package command import ( "sort" - "code.ewintr.nl/gte/cmd/cli/format" - "code.ewintr.nl/gte/internal/configuration" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/cmd/cli/format" + "go-mod.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" ) type Week struct { diff --git a/cmd/cli/format/format.go b/cmd/cli/format/format.go index c1cead1..ad2afba 100644 --- a/cmd/cli/format/format.go +++ b/cmd/cli/format/format.go @@ -3,7 +3,7 @@ package format import ( "fmt" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/internal/task" ) type Column int diff --git a/cmd/cli/format/table.go b/cmd/cli/format/table.go index fc2a0fa..b5a3dec 100644 --- a/cmd/cli/format/table.go +++ b/cmd/cli/format/table.go @@ -7,7 +7,7 @@ import ( "strconv" "strings" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/internal/task" ) func FormatTaskTable(tasks []*task.LocalTask, cols []Column) string { diff --git a/cmd/cli/main.go b/cmd/cli/main.go index 1cb2178..e77f8be 100644 --- a/cmd/cli/main.go +++ b/cmd/cli/main.go @@ -4,8 +4,8 @@ import ( "fmt" "os" - "code.ewintr.nl/gte/cmd/cli/command" - "code.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/cmd/cli/command" + "go-mod.ewintr.nl/gte/internal/configuration" ) func main() { diff --git a/cmd/daemon/service.go b/cmd/daemon/service.go index 90d5606..79b3048 100644 --- a/cmd/daemon/service.go +++ b/cmd/daemon/service.go @@ -5,13 +5,13 @@ import ( "os/signal" "time" - "code.ewintr.nl/go-kit/log" - "code.ewintr.nl/gte/internal/configuration" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" - "code.ewintr.nl/gte/pkg/msend" - "code.ewintr.nl/gte/pkg/mstore" + "go-mod.ewintr.nl/go-kit/log" + "go-mod.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/pkg/msend" + "go-mod.ewintr.nl/gte/pkg/mstore" ) func main() { diff --git a/go.mod b/go.mod index 8ff0e3b..f126079 100644 --- a/go.mod +++ b/go.mod @@ -1,9 +1,8 @@ -module code.ewintr.nl/gte +module go-mod.ewintr.nl/gte go 1.21.5 require ( - code.ewintr.nl/go-kit v0.0.0-20240308074309-a1328c3c44c6 fyne.io/fyne/v2 v2.4.4 github.com/emersion/go-imap v1.2.1 github.com/emersion/go-message v0.18.0 @@ -42,6 +41,7 @@ require ( github.com/stretchr/testify v1.8.4 // indirect github.com/tevino/abool v1.2.0 // indirect github.com/yuin/goldmark v1.5.5 // indirect + go-mod.ewintr.nl/go-kit v0.0.0-20240915084633-589e6c3a4b97 // indirect golang.org/x/image v0.11.0 // indirect golang.org/x/mobile v0.0.0-20230531173138-3c911d8e3eda // indirect golang.org/x/net v0.17.0 // indirect diff --git a/go.sum b/go.sum index 6804fa6..2630c9a 100644 --- a/go.sum +++ b/go.sum @@ -36,8 +36,6 @@ cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0Zeo cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= -code.ewintr.nl/go-kit v0.0.0-20240308074309-a1328c3c44c6 h1:qZwAicZOd18o9qWCU3pSj/QnrSNLCAMAOPJvyLgBQ0U= -code.ewintr.nl/go-kit v0.0.0-20240308074309-a1328c3c44c6/go.mod h1:Yk8Mdn1f4/L9tcymurtItqevVkac6P9ljh2Sd3T+FS8= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= fyne.io/fyne/v2 v2.4.4 h1:4efSRpoikcGbqQN83yzC9WmF8UNq9olsaJQ/Ejme6Z8= fyne.io/fyne/v2 v2.4.4/go.mod h1:VyrxAOZ3NRZRWBvNIJbfqoKOG4DdbewoPk7ozqJKNPY= @@ -114,8 +112,6 @@ github.com/go-text/render v0.0.0-20230619120952-35bccb6164b8 h1:VkKnvzbvHqgEfm35 github.com/go-text/render v0.0.0-20230619120952-35bccb6164b8/go.mod h1:h29xCucjNsDcYb7+0rJokxVwYAq+9kQ19WiFuBKkYtc= github.com/go-text/typesetting v0.1.0 h1:vioSaLPYcHwPEPLT7gsjCGDCoYSbljxoHJzMnKwVvHw= github.com/go-text/typesetting v0.1.0/go.mod h1:d22AnmeKq/on0HNv73UFriMKc4Ez6EqZAofLhAzpSzI= -github.com/go-text/typesetting-utils v0.0.0-20231211103740-d9332ae51f04 h1:zBx+p/W2aQYtNuyZNcTfinWvXBQwYtDfme051PR/lAY= -github.com/go-text/typesetting-utils v0.0.0-20231211103740-d9332ae51f04/go.mod h1:DDxDdQEnB70R8owOx3LVpEFvpMK9eeH1o2r0yZhFI9o= github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= github.com/godbus/dbus/v5 v5.1.0 h1:4KLkAxT3aOY8Li4FRJe/KvhoNFFxo0m6fNuFUO8QJUk= github.com/godbus/dbus/v5 v5.1.0/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= @@ -178,8 +174,6 @@ github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLe github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20221118152302-e6195bd50e26 h1:Xim43kblpZXfIBQsbuBVKCudVG457BR2GZFIz3uw3hQ= -github.com/google/pprof v0.0.0-20221118152302-e6195bd50e26/go.mod h1:dDKJzRmX4S37WGHujM7tX//fmj1uioxKzKxz3lo4HJo= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= @@ -227,18 +221,14 @@ github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfV github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= -github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= -github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/magiconair/properties v1.8.5/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60= github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.16 h1:bq3VjFmv/sOjHtdEhmkEV4x1AJtvUvOJ2PFAZ5+peKQ= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= -github.com/mattn/go-sqlite3 v1.14.22 h1:2gZY6PC6kBnID23Tichd1K+Z0oS6nE/XwU+Vz/5o4kU= -github.com/mattn/go-sqlite3 v1.14.22/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y= github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= @@ -310,6 +300,8 @@ github.com/yuin/goldmark v1.4.0/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1 github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= github.com/yuin/goldmark v1.5.5 h1:IJznPe8wOzfIKETmMkd06F8nXkmlhaHqFRM9l1hAGsU= github.com/yuin/goldmark v1.5.5/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= +go-mod.ewintr.nl/go-kit v0.0.0-20240915084633-589e6c3a4b97 h1:vk8KmsDbJOYFD8JrYPRlJ44ll6H2JgiPcYrNZNJccj8= +go-mod.ewintr.nl/go-kit v0.0.0-20240915084633-589e6c3a4b97/go.mod h1:JVAoSGJi3oLkkl+nGN0pqRjP6omkPfriCaT3CslW+Ok= go.etcd.io/etcd/api/v3 v3.5.0/go.mod h1:cbVKeC6lCfl7j/8jBhAK6aIYO9XOjdptoxU/nLQcPvs= go.etcd.io/etcd/client/pkg/v3 v3.5.0/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g= go.etcd.io/etcd/client/v2 v2.305.0/go.mod h1:h9puh54ZTgAKtEbut2oe9P4L/oqKCVB6xsXlzd7alYQ= @@ -375,8 +367,6 @@ golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.14.0 h1:dGoOF9QVLYng8IHTm7BAyWqCqSheQ5pYWGhzW00YJr0= -golang.org/x/mod v0.14.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -569,8 +559,6 @@ golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.8-0.20211022200916-316ba0b74098/go.mod h1:LGqMHiF4EqQNHR1JncWGqT5BVaXmza+X+BDGol+dOxo= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= -golang.org/x/tools v0.17.0 h1:FvmRgNOcs3kOa+T20R1uhfP9F6HgG2mfxDv1vrx1Htc= -golang.org/x/tools v0.17.0/go.mod h1:xsh6VxdV005rRVaS6SSAf9oiAqljS7UZUacMZ8Bnsps= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -678,7 +666,6 @@ google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlba google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/ini.v1 v1.62.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= @@ -699,8 +686,6 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -modernc.org/fileutil v1.3.0 h1:gQ5SIzK3H9kdfai/5x41oQiKValumqNTDXMvKo62HvE= -modernc.org/fileutil v1.3.0/go.mod h1:XatxS8fZi3pS8/hKG2GH/ArUogfxjpEKs3Ku3aK4JyQ= modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6 h1:5D53IMaUuA5InSeMu9eJtlQXS2NxAhyWQvkKEgXZhHI= modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6/go.mod h1:Qz0X07sNOR1jWYCrJMEnbW/X55x206Q7Vt4mz6/wHp4= modernc.org/libc v1.41.0 h1:g9YAc6BkKlgORsUWj+JwqoB1wU3o4DE3bM3yvA3k+Gk= diff --git a/internal/configuration/configuration.go b/internal/configuration/configuration.go index bff676a..472a9d6 100644 --- a/internal/configuration/configuration.go +++ b/internal/configuration/configuration.go @@ -9,9 +9,9 @@ import ( "strings" "time" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/pkg/msend" - "code.ewintr.nl/gte/pkg/mstore" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/pkg/msend" + "go-mod.ewintr.nl/gte/pkg/mstore" ) var ( diff --git a/internal/configuration/configuration_test.go b/internal/configuration/configuration_test.go index 93ceb25..9378d9f 100644 --- a/internal/configuration/configuration_test.go +++ b/internal/configuration/configuration_test.go @@ -4,11 +4,11 @@ import ( "strings" "testing" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/internal/configuration" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/pkg/msend" - "code.ewintr.nl/gte/pkg/mstore" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/internal/configuration" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/pkg/msend" + "go-mod.ewintr.nl/gte/pkg/mstore" ) func TestNew(t *testing.T) { diff --git a/internal/process/fetch.go b/internal/process/fetch.go index 4c953db..6206901 100644 --- a/internal/process/fetch.go +++ b/internal/process/fetch.go @@ -5,8 +5,8 @@ import ( "fmt" "time" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" ) var ( diff --git a/internal/process/fetch_test.go b/internal/process/fetch_test.go index a17cd23..7bf0f77 100644 --- a/internal/process/fetch_test.go +++ b/internal/process/fetch_test.go @@ -4,11 +4,11 @@ import ( "sort" "testing" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" - "code.ewintr.nl/gte/pkg/mstore" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/pkg/mstore" ) func TestFetchProcess(t *testing.T) { diff --git a/internal/process/inbox.go b/internal/process/inbox.go index a1a2af6..a4e5f83 100644 --- a/internal/process/inbox.go +++ b/internal/process/inbox.go @@ -6,8 +6,8 @@ import ( "sync" "time" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" ) var ( diff --git a/internal/process/inbox_test.go b/internal/process/inbox_test.go index 0ea39fe..e2f7541 100644 --- a/internal/process/inbox_test.go +++ b/internal/process/inbox_test.go @@ -3,11 +3,11 @@ package process_test import ( "testing" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" - "code.ewintr.nl/gte/pkg/mstore" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/pkg/mstore" ) func TestInboxProcess(t *testing.T) { diff --git a/internal/process/list.go b/internal/process/list.go index 9818ed0..d24b579 100644 --- a/internal/process/list.go +++ b/internal/process/list.go @@ -4,8 +4,8 @@ import ( "errors" "fmt" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" ) var ( diff --git a/internal/process/list_test.go b/internal/process/list_test.go index d239d81..1155a5c 100644 --- a/internal/process/list_test.go +++ b/internal/process/list_test.go @@ -5,10 +5,10 @@ import ( "sort" "testing" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" ) func TestListProcess(t *testing.T) { diff --git a/internal/process/new.go b/internal/process/new.go index fbcba0d..3be1028 100644 --- a/internal/process/new.go +++ b/internal/process/new.go @@ -4,8 +4,8 @@ import ( "errors" "fmt" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" ) var ( diff --git a/internal/process/new_test.go b/internal/process/new_test.go index 2bc9d00..5f52ead 100644 --- a/internal/process/new_test.go +++ b/internal/process/new_test.go @@ -3,10 +3,10 @@ package process_test import ( "testing" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" ) func TestNew(t *testing.T) { diff --git a/internal/process/projects.go b/internal/process/projects.go index 06164f1..f55341b 100644 --- a/internal/process/projects.go +++ b/internal/process/projects.go @@ -5,7 +5,7 @@ import ( "fmt" "sort" - "code.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/storage" ) var ( diff --git a/internal/process/projects_test.go b/internal/process/projects_test.go index 2939091..2aae019 100644 --- a/internal/process/projects_test.go +++ b/internal/process/projects_test.go @@ -3,10 +3,10 @@ package process_test import ( "testing" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" ) func TestProjects(t *testing.T) { diff --git a/internal/process/recur.go b/internal/process/recur.go index e4e7502..70345d6 100644 --- a/internal/process/recur.go +++ b/internal/process/recur.go @@ -6,8 +6,8 @@ import ( "sync" "time" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" ) var ( diff --git a/internal/process/recur_test.go b/internal/process/recur_test.go index 6dce98c..02944f8 100644 --- a/internal/process/recur_test.go +++ b/internal/process/recur_test.go @@ -5,12 +5,12 @@ import ( "testing" "time" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" - "code.ewintr.nl/gte/pkg/msend" - "code.ewintr.nl/gte/pkg/mstore" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/pkg/msend" + "go-mod.ewintr.nl/gte/pkg/mstore" ) func TestRecurProcess(t *testing.T) { diff --git a/internal/process/send.go b/internal/process/send.go index 467ea91..bc45989 100644 --- a/internal/process/send.go +++ b/internal/process/send.go @@ -4,8 +4,8 @@ import ( "errors" "fmt" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" ) var ( diff --git a/internal/process/send_test.go b/internal/process/send_test.go index c4ce810..d847a6c 100644 --- a/internal/process/send_test.go +++ b/internal/process/send_test.go @@ -3,11 +3,11 @@ package process_test import ( "testing" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" - "code.ewintr.nl/gte/pkg/msend" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/pkg/msend" ) func TestSend(t *testing.T) { diff --git a/internal/process/update.go b/internal/process/update.go index 3625a92..dc9cbec 100644 --- a/internal/process/update.go +++ b/internal/process/update.go @@ -4,8 +4,8 @@ import ( "errors" "fmt" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" ) var ( diff --git a/internal/process/update_test.go b/internal/process/update_test.go index c9fc159..0ab6d79 100644 --- a/internal/process/update_test.go +++ b/internal/process/update_test.go @@ -3,10 +3,10 @@ package process_test import ( "testing" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/internal/process" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/internal/process" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" ) func TestUpdate(t *testing.T) { diff --git a/internal/storage/dispatch.go b/internal/storage/dispatch.go index 487d5eb..8ed10f8 100644 --- a/internal/storage/dispatch.go +++ b/internal/storage/dispatch.go @@ -1,8 +1,8 @@ package storage import ( - "code.ewintr.nl/gte/internal/task" - "code.ewintr.nl/gte/pkg/msend" + "go-mod.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/pkg/msend" ) type Dispatcher struct { diff --git a/internal/storage/dispatch_test.go b/internal/storage/dispatch_test.go index 58de204..2b41a1d 100644 --- a/internal/storage/dispatch_test.go +++ b/internal/storage/dispatch_test.go @@ -4,10 +4,10 @@ import ( "fmt" "testing" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" - "code.ewintr.nl/gte/pkg/msend" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/pkg/msend" ) func TestDispatcherDispatch(t *testing.T) { diff --git a/internal/storage/local.go b/internal/storage/local.go index 80c4cc3..0d90809 100644 --- a/internal/storage/local.go +++ b/internal/storage/local.go @@ -5,7 +5,7 @@ import ( "sort" "time" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/internal/task" ) var ( diff --git a/internal/storage/local_test.go b/internal/storage/local_test.go index a8beefa..1627551 100644 --- a/internal/storage/local_test.go +++ b/internal/storage/local_test.go @@ -4,9 +4,9 @@ import ( "sort" "testing" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" ) func TestNextLocalId(t *testing.T) { diff --git a/internal/storage/memory.go b/internal/storage/memory.go index 17b3c97..5ceb1e0 100644 --- a/internal/storage/memory.go +++ b/internal/storage/memory.go @@ -3,7 +3,7 @@ package storage import ( "time" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/internal/task" "github.com/google/uuid" ) diff --git a/internal/storage/memory_test.go b/internal/storage/memory_test.go index cb2a320..4b59fa0 100644 --- a/internal/storage/memory_test.go +++ b/internal/storage/memory_test.go @@ -5,10 +5,10 @@ import ( "testing" "time" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" - "code.ewintr.nl/gte/pkg/mstore" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/pkg/mstore" ) func TestMemory(t *testing.T) { diff --git a/internal/storage/remote.go b/internal/storage/remote.go index eddf4bd..c1e7e45 100644 --- a/internal/storage/remote.go +++ b/internal/storage/remote.go @@ -5,8 +5,8 @@ import ( "fmt" "strconv" - "code.ewintr.nl/gte/internal/task" - "code.ewintr.nl/gte/pkg/mstore" + "go-mod.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/pkg/mstore" ) var ( diff --git a/internal/storage/remote_test.go b/internal/storage/remote_test.go index 270938f..4ac1275 100644 --- a/internal/storage/remote_test.go +++ b/internal/storage/remote_test.go @@ -5,10 +5,10 @@ import ( "fmt" "testing" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/internal/storage" - "code.ewintr.nl/gte/internal/task" - "code.ewintr.nl/gte/pkg/mstore" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/internal/storage" + "go-mod.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/pkg/mstore" ) func TestRepoFindAll(t *testing.T) { diff --git a/internal/storage/sqlite.go b/internal/storage/sqlite.go index b7e63e5..d00cd20 100644 --- a/internal/storage/sqlite.go +++ b/internal/storage/sqlite.go @@ -6,7 +6,7 @@ import ( "fmt" "time" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/internal/task" "github.com/google/uuid" _ "modernc.org/sqlite" ) diff --git a/internal/task/date_test.go b/internal/task/date_test.go index dda6d08..15b0962 100644 --- a/internal/task/date_test.go +++ b/internal/task/date_test.go @@ -5,8 +5,8 @@ import ( "testing" "time" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/internal/task" ) func TestWeekdaysSort(t *testing.T) { diff --git a/internal/task/localtask_test.go b/internal/task/localtask_test.go index e942d7f..6fecc47 100644 --- a/internal/task/localtask_test.go +++ b/internal/task/localtask_test.go @@ -3,8 +3,8 @@ package task_test import ( "testing" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/internal/task" ) func TestLocalTaskApply(t *testing.T) { diff --git a/internal/task/recur_test.go b/internal/task/recur_test.go index 1254221..0e3de21 100644 --- a/internal/task/recur_test.go +++ b/internal/task/recur_test.go @@ -4,8 +4,8 @@ import ( "testing" "time" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/internal/task" ) func TestDaily(t *testing.T) { diff --git a/internal/task/task.go b/internal/task/task.go index cf03247..31f1131 100644 --- a/internal/task/task.go +++ b/internal/task/task.go @@ -6,7 +6,7 @@ import ( "strconv" "strings" - "code.ewintr.nl/gte/pkg/mstore" + "go-mod.ewintr.nl/gte/pkg/mstore" "github.com/google/uuid" ) diff --git a/internal/task/task_test.go b/internal/task/task_test.go index d740769..06aa7ce 100644 --- a/internal/task/task_test.go +++ b/internal/task/task_test.go @@ -4,9 +4,9 @@ import ( "fmt" "testing" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/internal/task" - "code.ewintr.nl/gte/pkg/mstore" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/internal/task" + "go-mod.ewintr.nl/gte/pkg/mstore" ) func TestNewFromMessage(t *testing.T) { diff --git a/pkg/msend/memory_test.go b/pkg/msend/memory_test.go index a9e8fca..41b3e25 100644 --- a/pkg/msend/memory_test.go +++ b/pkg/msend/memory_test.go @@ -4,8 +4,8 @@ import ( "fmt" "testing" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/pkg/msend" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/pkg/msend" ) func TestMemorySend(t *testing.T) { diff --git a/pkg/mstore/memory_test.go b/pkg/mstore/memory_test.go index b6b85a8..bc3b82f 100644 --- a/pkg/mstore/memory_test.go +++ b/pkg/mstore/memory_test.go @@ -4,8 +4,8 @@ import ( "fmt" "testing" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/pkg/mstore" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/pkg/mstore" ) func TestNewMemory(t *testing.T) { diff --git a/pkg/mstore/mstore_test.go b/pkg/mstore/mstore_test.go index f4f5a15..8735cf8 100644 --- a/pkg/mstore/mstore_test.go +++ b/pkg/mstore/mstore_test.go @@ -3,8 +3,8 @@ package mstore_test import ( "testing" - "code.ewintr.nl/go-kit/test" - "code.ewintr.nl/gte/pkg/mstore" + "go-mod.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/gte/pkg/mstore" ) func TestMessageValid(t *testing.T) {