dommain update

This commit is contained in:
Erik Winter 2024-09-17 07:33:26 +02:00
parent 56ed3f237e
commit a9b4d37bd0
63 changed files with 205 additions and 220 deletions

View File

@ -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. 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)

View File

@ -1,10 +1,10 @@
package component package component
import ( import (
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/pkg/msend" "go-mod.ewintr.nl/gte/pkg/msend"
"code.ewintr.nl/gte/pkg/mstore" "go-mod.ewintr.nl/gte/pkg/mstore"
"fyne.io/fyne/v2" "fyne.io/fyne/v2"
) )

View File

@ -5,11 +5,11 @@ import (
"sort" "sort"
"time" "time"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
"code.ewintr.nl/gte/pkg/msend" "go-mod.ewintr.nl/gte/pkg/msend"
"code.ewintr.nl/gte/pkg/mstore" "go-mod.ewintr.nl/gte/pkg/mstore"
) )
type Tasks struct { type Tasks struct {

View File

@ -1,8 +1,8 @@
package main package main
import ( import (
"code.ewintr.nl/gte/cmd/android-app/component" "go-mod.ewintr.nl/gte/cmd/android-app/component"
"code.ewintr.nl/gte/cmd/android-app/runner" "go-mod.ewintr.nl/gte/cmd/android-app/runner"
"fyne.io/fyne/v2/app" "fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/storage" "fyne.io/fyne/v2/storage"
) )

View File

@ -7,9 +7,9 @@ import (
"sync" "sync"
"time" "time"
"code.ewintr.nl/gte/cmd/android-app/component" "go-mod.ewintr.nl/gte/cmd/android-app/component"
"code.ewintr.nl/gte/cmd/android-app/screen" "go-mod.ewintr.nl/gte/cmd/android-app/screen"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
"fyne.io/fyne/v2" "fyne.io/fyne/v2"
"fyne.io/fyne/v2/storage" "fyne.io/fyne/v2/storage"
) )

View File

@ -6,8 +6,8 @@ import (
"strconv" "strconv"
"strings" "strings"
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
var ( var (

View File

@ -5,9 +5,9 @@ import (
"strings" "strings"
"testing" "testing"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/cmd/cli/command" "go-mod.ewintr.nl/gte/cmd/cli/command"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
func TestParseTaskFieldArgs(t *testing.T) { func TestParseTaskFieldArgs(t *testing.T) {

View File

@ -1,11 +1,11 @@
package command package command
import ( import (
"code.ewintr.nl/gte/cmd/cli/format" "go-mod.ewintr.nl/gte/cmd/cli/format"
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
// Done updates a task to be marked done // Done updates a task to be marked done

View File

@ -3,11 +3,11 @@ package command
import ( import (
"fmt" "fmt"
"code.ewintr.nl/gte/cmd/cli/format" "go-mod.ewintr.nl/gte/cmd/cli/format"
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/pkg/mstore" "go-mod.ewintr.nl/gte/pkg/mstore"
) )
type Fetch struct { type Fetch struct {

View File

@ -4,11 +4,11 @@ import (
"sort" "sort"
"strings" "strings"
"code.ewintr.nl/gte/cmd/cli/format" "go-mod.ewintr.nl/gte/cmd/cli/format"
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
type Folder struct { type Folder struct {

View File

@ -3,11 +3,11 @@ package command
import ( import (
"fmt" "fmt"
"code.ewintr.nl/gte/cmd/cli/format" "go-mod.ewintr.nl/gte/cmd/cli/format"
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/pkg/mstore" "go-mod.ewintr.nl/gte/pkg/mstore"
) )
type Inbox struct { type Inbox struct {

View File

@ -1,10 +1,10 @@
package command package command
import ( import (
"code.ewintr.nl/gte/cmd/cli/format" "go-mod.ewintr.nl/gte/cmd/cli/format"
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "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 // New sends an action to the NEW folder so it can be updated to a real task later

View File

@ -4,11 +4,11 @@ import (
"sort" "sort"
"strings" "strings"
"code.ewintr.nl/gte/cmd/cli/format" "go-mod.ewintr.nl/gte/cmd/cli/format"
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
type Project struct { type Project struct {

View File

@ -3,10 +3,10 @@ package command
import ( import (
"fmt" "fmt"
"code.ewintr.nl/gte/cmd/cli/format" "go-mod.ewintr.nl/gte/cmd/cli/format"
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
) )
type Projects struct { type Projects struct {

View File

@ -4,12 +4,12 @@ import (
"fmt" "fmt"
"strconv" "strconv"
"code.ewintr.nl/gte/cmd/cli/format" "go-mod.ewintr.nl/gte/cmd/cli/format"
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/pkg/msend" "go-mod.ewintr.nl/gte/pkg/msend"
"code.ewintr.nl/gte/pkg/mstore" "go-mod.ewintr.nl/gte/pkg/mstore"
) )
type Recur struct { type Recur struct {

View File

@ -3,11 +3,11 @@ package command
import ( import (
"fmt" "fmt"
"code.ewintr.nl/gte/cmd/cli/format" "go-mod.ewintr.nl/gte/cmd/cli/format"
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/pkg/msend" "go-mod.ewintr.nl/gte/pkg/msend"
) )
type Send struct { type Send struct {

View File

@ -1,9 +1,9 @@
package command package command
import ( import (
"code.ewintr.nl/gte/cmd/cli/format" "go-mod.ewintr.nl/gte/cmd/cli/format"
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
) )
type Show struct { type Show struct {

View File

@ -4,12 +4,12 @@ import (
"fmt" "fmt"
"time" "time"
"code.ewintr.nl/gte/cmd/cli/format" "go-mod.ewintr.nl/gte/cmd/cli/format"
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/pkg/msend" "go-mod.ewintr.nl/gte/pkg/msend"
"code.ewintr.nl/gte/pkg/mstore" "go-mod.ewintr.nl/gte/pkg/mstore"
) )
type Sync struct { type Sync struct {

View File

@ -3,11 +3,11 @@ package command
import ( import (
"sort" "sort"
"code.ewintr.nl/gte/cmd/cli/format" "go-mod.ewintr.nl/gte/cmd/cli/format"
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
// Today lists all task that are due today or past their due date // Today lists all task that are due today or past their due date

View File

@ -3,11 +3,11 @@ package command
import ( import (
"sort" "sort"
"code.ewintr.nl/gte/cmd/cli/format" "go-mod.ewintr.nl/gte/cmd/cli/format"
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
// Tomorrow lists all tasks that are due tomorrow // Tomorrow lists all tasks that are due tomorrow

View File

@ -1,10 +1,10 @@
package command package command
import ( import (
"code.ewintr.nl/gte/cmd/cli/format" "go-mod.ewintr.nl/gte/cmd/cli/format"
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
) )
type Update struct { type Update struct {

View File

@ -3,11 +3,11 @@ package command
import ( import (
"sort" "sort"
"code.ewintr.nl/gte/cmd/cli/format" "go-mod.ewintr.nl/gte/cmd/cli/format"
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
type Week struct { type Week struct {

View File

@ -3,7 +3,7 @@ package format
import ( import (
"fmt" "fmt"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
type Column int type Column int

View File

@ -7,7 +7,7 @@ import (
"strconv" "strconv"
"strings" "strings"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
func FormatTaskTable(tasks []*task.LocalTask, cols []Column) string { func FormatTaskTable(tasks []*task.LocalTask, cols []Column) string {

View File

@ -4,8 +4,8 @@ import (
"fmt" "fmt"
"os" "os"
"code.ewintr.nl/gte/cmd/cli/command" "go-mod.ewintr.nl/gte/cmd/cli/command"
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
) )
func main() { func main() {

View File

@ -5,13 +5,13 @@ import (
"os/signal" "os/signal"
"time" "time"
"code.ewintr.nl/go-kit/log" "go-mod.ewintr.nl/go-kit/log"
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
"code.ewintr.nl/gte/pkg/msend" "go-mod.ewintr.nl/gte/pkg/msend"
"code.ewintr.nl/gte/pkg/mstore" "go-mod.ewintr.nl/gte/pkg/mstore"
) )
func main() { func main() {

4
go.mod
View File

@ -1,9 +1,8 @@
module code.ewintr.nl/gte module go-mod.ewintr.nl/gte
go 1.21.5 go 1.21.5
require ( require (
code.ewintr.nl/go-kit v0.0.0-20240308074309-a1328c3c44c6
fyne.io/fyne/v2 v2.4.4 fyne.io/fyne/v2 v2.4.4
github.com/emersion/go-imap v1.2.1 github.com/emersion/go-imap v1.2.1
github.com/emersion/go-message v0.18.0 github.com/emersion/go-message v0.18.0
@ -42,6 +41,7 @@ require (
github.com/stretchr/testify v1.8.4 // indirect github.com/stretchr/testify v1.8.4 // indirect
github.com/tevino/abool v1.2.0 // indirect github.com/tevino/abool v1.2.0 // indirect
github.com/yuin/goldmark v1.5.5 // 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/image v0.11.0 // indirect
golang.org/x/mobile v0.0.0-20230531173138-3c911d8e3eda // indirect golang.org/x/mobile v0.0.0-20230531173138-3c911d8e3eda // indirect
golang.org/x/net v0.17.0 // indirect golang.org/x/net v0.17.0 // indirect

19
go.sum
View File

@ -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.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.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs=
cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= 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= 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 h1:4efSRpoikcGbqQN83yzC9WmF8UNq9olsaJQ/Ejme6Z8=
fyne.io/fyne/v2 v2.4.4/go.mod h1:VyrxAOZ3NRZRWBvNIJbfqoKOG4DdbewoPk7ozqJKNPY= 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/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 h1:vioSaLPYcHwPEPLT7gsjCGDCoYSbljxoHJzMnKwVvHw=
github.com/go-text/typesetting v0.1.0/go.mod h1:d22AnmeKq/on0HNv73UFriMKc4Ez6EqZAofLhAzpSzI= 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.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 h1:4KLkAxT3aOY8Li4FRJe/KvhoNFFxo0m6fNuFUO8QJUk=
github.com/godbus/dbus/v5 v5.1.0/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= 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-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-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-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/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.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= 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/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= 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/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/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= 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/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/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-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.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 h1:bq3VjFmv/sOjHtdEhmkEV4x1AJtvUvOJ2PFAZ5+peKQ=
github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= 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/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=
github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc=
github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= 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.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
github.com/yuin/goldmark v1.5.5 h1:IJznPe8wOzfIKETmMkd06F8nXkmlhaHqFRM9l1hAGsU= github.com/yuin/goldmark v1.5.5 h1:IJznPe8wOzfIKETmMkd06F8nXkmlhaHqFRM9l1hAGsU=
github.com/yuin/goldmark v1.5.5/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= 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/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/pkg/v3 v3.5.0/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g=
go.etcd.io/etcd/client/v2 v2.305.0/go.mod h1:h9puh54ZTgAKtEbut2oe9P4L/oqKCVB6xsXlzd7alYQ= 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.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.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.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-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-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
golang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/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.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.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.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-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-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/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-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= 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 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/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/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
gopkg.in/ini.v1 v1.62.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= 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-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.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
honnef.co/go/tools v0.0.1-2020.1.4/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 h1:5D53IMaUuA5InSeMu9eJtlQXS2NxAhyWQvkKEgXZhHI=
modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6/go.mod h1:Qz0X07sNOR1jWYCrJMEnbW/X55x206Q7Vt4mz6/wHp4= 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= modernc.org/libc v1.41.0 h1:g9YAc6BkKlgORsUWj+JwqoB1wU3o4DE3bM3yvA3k+Gk=

View File

@ -9,9 +9,9 @@ import (
"strings" "strings"
"time" "time"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/pkg/msend" "go-mod.ewintr.nl/gte/pkg/msend"
"code.ewintr.nl/gte/pkg/mstore" "go-mod.ewintr.nl/gte/pkg/mstore"
) )
var ( var (

View File

@ -4,11 +4,11 @@ import (
"strings" "strings"
"testing" "testing"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/internal/configuration" "go-mod.ewintr.nl/gte/internal/configuration"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/pkg/msend" "go-mod.ewintr.nl/gte/pkg/msend"
"code.ewintr.nl/gte/pkg/mstore" "go-mod.ewintr.nl/gte/pkg/mstore"
) )
func TestNew(t *testing.T) { func TestNew(t *testing.T) {

View File

@ -5,8 +5,8 @@ import (
"fmt" "fmt"
"time" "time"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
var ( var (

View File

@ -4,11 +4,11 @@ import (
"sort" "sort"
"testing" "testing"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
"code.ewintr.nl/gte/pkg/mstore" "go-mod.ewintr.nl/gte/pkg/mstore"
) )
func TestFetchProcess(t *testing.T) { func TestFetchProcess(t *testing.T) {

View File

@ -6,8 +6,8 @@ import (
"sync" "sync"
"time" "time"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
var ( var (

View File

@ -3,11 +3,11 @@ package process_test
import ( import (
"testing" "testing"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
"code.ewintr.nl/gte/pkg/mstore" "go-mod.ewintr.nl/gte/pkg/mstore"
) )
func TestInboxProcess(t *testing.T) { func TestInboxProcess(t *testing.T) {

View File

@ -4,8 +4,8 @@ import (
"errors" "errors"
"fmt" "fmt"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
var ( var (

View File

@ -5,10 +5,10 @@ import (
"sort" "sort"
"testing" "testing"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
func TestListProcess(t *testing.T) { func TestListProcess(t *testing.T) {

View File

@ -4,8 +4,8 @@ import (
"errors" "errors"
"fmt" "fmt"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
var ( var (

View File

@ -3,10 +3,10 @@ package process_test
import ( import (
"testing" "testing"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
func TestNew(t *testing.T) { func TestNew(t *testing.T) {

View File

@ -5,7 +5,7 @@ import (
"fmt" "fmt"
"sort" "sort"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
) )
var ( var (

View File

@ -3,10 +3,10 @@ package process_test
import ( import (
"testing" "testing"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
func TestProjects(t *testing.T) { func TestProjects(t *testing.T) {

View File

@ -6,8 +6,8 @@ import (
"sync" "sync"
"time" "time"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
var ( var (

View File

@ -5,12 +5,12 @@ import (
"testing" "testing"
"time" "time"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
"code.ewintr.nl/gte/pkg/msend" "go-mod.ewintr.nl/gte/pkg/msend"
"code.ewintr.nl/gte/pkg/mstore" "go-mod.ewintr.nl/gte/pkg/mstore"
) )
func TestRecurProcess(t *testing.T) { func TestRecurProcess(t *testing.T) {

View File

@ -4,8 +4,8 @@ import (
"errors" "errors"
"fmt" "fmt"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
var ( var (

View File

@ -3,11 +3,11 @@ package process_test
import ( import (
"testing" "testing"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
"code.ewintr.nl/gte/pkg/msend" "go-mod.ewintr.nl/gte/pkg/msend"
) )
func TestSend(t *testing.T) { func TestSend(t *testing.T) {

View File

@ -4,8 +4,8 @@ import (
"errors" "errors"
"fmt" "fmt"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
var ( var (

View File

@ -3,10 +3,10 @@ package process_test
import ( import (
"testing" "testing"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/internal/process" "go-mod.ewintr.nl/gte/internal/process"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
func TestUpdate(t *testing.T) { func TestUpdate(t *testing.T) {

View File

@ -1,8 +1,8 @@
package storage package storage
import ( import (
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
"code.ewintr.nl/gte/pkg/msend" "go-mod.ewintr.nl/gte/pkg/msend"
) )
type Dispatcher struct { type Dispatcher struct {

View File

@ -4,10 +4,10 @@ import (
"fmt" "fmt"
"testing" "testing"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
"code.ewintr.nl/gte/pkg/msend" "go-mod.ewintr.nl/gte/pkg/msend"
) )
func TestDispatcherDispatch(t *testing.T) { func TestDispatcherDispatch(t *testing.T) {

View File

@ -5,7 +5,7 @@ import (
"sort" "sort"
"time" "time"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
var ( var (

View File

@ -4,9 +4,9 @@ import (
"sort" "sort"
"testing" "testing"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
func TestNextLocalId(t *testing.T) { func TestNextLocalId(t *testing.T) {

View File

@ -3,7 +3,7 @@ package storage
import ( import (
"time" "time"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
"github.com/google/uuid" "github.com/google/uuid"
) )

View File

@ -5,10 +5,10 @@ import (
"testing" "testing"
"time" "time"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
"code.ewintr.nl/gte/pkg/mstore" "go-mod.ewintr.nl/gte/pkg/mstore"
) )
func TestMemory(t *testing.T) { func TestMemory(t *testing.T) {

View File

@ -5,8 +5,8 @@ import (
"fmt" "fmt"
"strconv" "strconv"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
"code.ewintr.nl/gte/pkg/mstore" "go-mod.ewintr.nl/gte/pkg/mstore"
) )
var ( var (

View File

@ -5,10 +5,10 @@ import (
"fmt" "fmt"
"testing" "testing"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/internal/storage" "go-mod.ewintr.nl/gte/internal/storage"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
"code.ewintr.nl/gte/pkg/mstore" "go-mod.ewintr.nl/gte/pkg/mstore"
) )
func TestRepoFindAll(t *testing.T) { func TestRepoFindAll(t *testing.T) {

View File

@ -6,7 +6,7 @@ import (
"fmt" "fmt"
"time" "time"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
"github.com/google/uuid" "github.com/google/uuid"
_ "modernc.org/sqlite" _ "modernc.org/sqlite"
) )

View File

@ -5,8 +5,8 @@ import (
"testing" "testing"
"time" "time"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
func TestWeekdaysSort(t *testing.T) { func TestWeekdaysSort(t *testing.T) {

View File

@ -3,8 +3,8 @@ package task_test
import ( import (
"testing" "testing"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
func TestLocalTaskApply(t *testing.T) { func TestLocalTaskApply(t *testing.T) {

View File

@ -4,8 +4,8 @@ import (
"testing" "testing"
"time" "time"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
) )
func TestDaily(t *testing.T) { func TestDaily(t *testing.T) {

View File

@ -6,7 +6,7 @@ import (
"strconv" "strconv"
"strings" "strings"
"code.ewintr.nl/gte/pkg/mstore" "go-mod.ewintr.nl/gte/pkg/mstore"
"github.com/google/uuid" "github.com/google/uuid"
) )

View File

@ -4,9 +4,9 @@ import (
"fmt" "fmt"
"testing" "testing"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/internal/task" "go-mod.ewintr.nl/gte/internal/task"
"code.ewintr.nl/gte/pkg/mstore" "go-mod.ewintr.nl/gte/pkg/mstore"
) )
func TestNewFromMessage(t *testing.T) { func TestNewFromMessage(t *testing.T) {

View File

@ -4,8 +4,8 @@ import (
"fmt" "fmt"
"testing" "testing"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/pkg/msend" "go-mod.ewintr.nl/gte/pkg/msend"
) )
func TestMemorySend(t *testing.T) { func TestMemorySend(t *testing.T) {

View File

@ -4,8 +4,8 @@ import (
"fmt" "fmt"
"testing" "testing"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/pkg/mstore" "go-mod.ewintr.nl/gte/pkg/mstore"
) )
func TestNewMemory(t *testing.T) { func TestNewMemory(t *testing.T) {

View File

@ -3,8 +3,8 @@ package mstore_test
import ( import (
"testing" "testing"
"code.ewintr.nl/go-kit/test" "go-mod.ewintr.nl/go-kit/test"
"code.ewintr.nl/gte/pkg/mstore" "go-mod.ewintr.nl/gte/pkg/mstore"
) )
func TestMessageValid(t *testing.T) { func TestMessageValid(t *testing.T) {