Remove module structure from nezabx

Nexabx is an application and not Go library,
so there is no need to use module structure
in module name.
This commit is contained in:
Alex Vanin 2023-03-04 21:28:23 +03:00
parent b019d3aa2d
commit fe1b47a3be
3 changed files with 8 additions and 6 deletions

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/alexvanin/nezabx
module nezabx
go 1.18

View file

@ -7,9 +7,10 @@ import (
"os"
"os/signal"
"github.com/alexvanin/nezabx/db"
"github.com/alexvanin/nezabx/notifications/email"
"github.com/alexvanin/nezabx/runners"
"nezabx/db"
"nezabx/notifications/email"
"nezabx/runners"
"github.com/robfig/cron/v3"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"

View file

@ -10,8 +10,9 @@ import (
"strings"
"time"
"github.com/alexvanin/nezabx/db"
"github.com/alexvanin/nezabx/notifications/email"
"nezabx/db"
"nezabx/notifications/email"
"github.com/google/shlex"
"github.com/robfig/cron/v3"
"go.uber.org/zap"