use new import URL

Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
Sam Therapy 2023-02-17 19:42:48 +01:00
parent 9800801544
commit f0fdd15473
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
11 changed files with 16 additions and 16 deletions

View File

@ -8,10 +8,10 @@ import (
"os/signal"
"time"
_ "git.freecumextremist.com/grumbulon/pomme/docs"
"git.freecumextremist.com/grumbulon/pomme/frontend"
"git.freecumextremist.com/grumbulon/pomme/internal"
"git.freecumextremist.com/grumbulon/pomme/internal/api"
_ "dns.froth.zone/pomme/docs"
"dns.froth.zone/pomme/frontend"
"dns.froth.zone/pomme/internal"
"dns.froth.zone/pomme/internal/api"
"github.com/go-chi/chi/v5"
"github.com/go-chi/chi/v5/middleware"
httpSwagger "github.com/swaggo/http-swagger"

2
go.mod
View File

@ -1,4 +1,4 @@
module git.freecumextremist.com/grumbulon/pomme
module dns.froth.zone/pomme
go 1.19

View File

@ -4,7 +4,7 @@ import (
"net/http"
"time"
"git.freecumextremist.com/grumbulon/pomme/internal"
"dns.froth.zone/pomme/internal"
"github.com/go-chi/chi/v5"
"github.com/go-chi/httprate"
"github.com/go-chi/jwtauth/v5"

View File

@ -15,8 +15,8 @@ import (
"testing"
"time"
"git.freecumextremist.com/grumbulon/pomme/internal"
"git.freecumextremist.com/grumbulon/pomme/internal/db"
"dns.froth.zone/pomme/internal"
"dns.froth.zone/pomme/internal/db"
"github.com/go-chi/chi/v5"
"github.com/go-chi/jwtauth/v5"
"github.com/stretchr/testify/assert"

View File

@ -4,7 +4,7 @@ import (
"net/http"
"time"
"git.freecumextremist.com/grumbulon/pomme/internal"
"dns.froth.zone/pomme/internal"
"github.com/go-chi/render"
"golang.org/x/crypto/bcrypt"
"gorm.io/gorm"

View File

@ -6,7 +6,7 @@ import (
"os"
"path/filepath"
"git.freecumextremist.com/grumbulon/pomme/internal"
"dns.froth.zone/pomme/internal"
)
var errEmptyFile = errors.New("will not save empty file to FS")

View File

@ -6,8 +6,8 @@ import (
"net/http"
"time"
"git.freecumextremist.com/grumbulon/pomme/internal"
"git.freecumextremist.com/grumbulon/pomme/internal/db"
"dns.froth.zone/pomme/internal"
"dns.froth.zone/pomme/internal/db"
"github.com/go-chi/httplog"
"github.com/go-chi/render"
"gorm.io/gorm"

View File

@ -4,7 +4,7 @@ import (
"fmt"
"time"
"git.freecumextremist.com/grumbulon/pomme/internal"
"dns.froth.zone/pomme/internal"
"github.com/go-chi/jwtauth/v5"
)

View File

@ -7,7 +7,7 @@ import (
"net/http"
"time"
"git.freecumextremist.com/grumbulon/pomme/internal"
"dns.froth.zone/pomme/internal"
"github.com/go-chi/render"
"golang.org/x/crypto/bcrypt"
"gorm.io/gorm"

View File

@ -7,7 +7,7 @@ import (
"net/http"
"strings"
"git.freecumextremist.com/grumbulon/pomme/internal"
"dns.froth.zone/pomme/internal"
"github.com/go-chi/jwtauth/v5"
"github.com/go-chi/render"
"github.com/miekg/dns"

View File

@ -3,7 +3,7 @@ package db
import (
"fmt"
"git.freecumextremist.com/grumbulon/pomme/internal"
"dns.froth.zone/pomme/internal"
"github.com/glebarez/sqlite"
"gorm.io/gorm"
)