Merge pull request 'feat: use new import URL' (#36) from new-import into master

Reviewed-on: https://git.freecumextremist.com/grumbulon/pomme/pulls/36
This commit is contained in:
Sam Therapy 2023-02-17 19:16:48 +00:00
commit 3df52fd618
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"
)