summaryrefslogtreecommitdiff
path: root/internal/paging
diff options
context:
space:
mode:
Diffstat (limited to 'internal/paging')
-rw-r--r--internal/paging/page_test.go2
-rw-r--r--internal/paging/parse.go2
-rw-r--r--internal/paging/response.go4
-rw-r--r--internal/paging/response_test.go4
4 files changed, 6 insertions, 6 deletions
diff --git a/internal/paging/page_test.go b/internal/paging/page_test.go
index dcf727aec..0ee69504d 100644
--- a/internal/paging/page_test.go
+++ b/internal/paging/page_test.go
@@ -24,8 +24,8 @@ import (
"testing"
"time"
+ "code.superseriousbusiness.org/gotosocial/internal/paging"
"github.com/stretchr/testify/assert"
- "github.com/superseriousbusiness/gotosocial/internal/paging"
)
type Case struct {
diff --git a/internal/paging/parse.go b/internal/paging/parse.go
index ce6391708..726288de7 100644
--- a/internal/paging/parse.go
+++ b/internal/paging/parse.go
@@ -20,8 +20,8 @@ package paging
import (
"strconv"
+ "code.superseriousbusiness.org/gotosocial/internal/gtserror"
"github.com/gin-gonic/gin"
- "github.com/superseriousbusiness/gotosocial/internal/gtserror"
)
// ParseIDPage parses an ID Page from a request context, returning BadRequest on error parsing.
diff --git a/internal/paging/response.go b/internal/paging/response.go
index 71b0cf213..a832aa3df 100644
--- a/internal/paging/response.go
+++ b/internal/paging/response.go
@@ -21,8 +21,8 @@ import (
"net/url"
"strings"
- apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
- "github.com/superseriousbusiness/gotosocial/internal/config"
+ apimodel "code.superseriousbusiness.org/gotosocial/internal/api/model"
+ "code.superseriousbusiness.org/gotosocial/internal/config"
)
// ResponseParams models the parameters to pass to PageableResponse.
diff --git a/internal/paging/response_test.go b/internal/paging/response_test.go
index b4b7d6058..73163088c 100644
--- a/internal/paging/response_test.go
+++ b/internal/paging/response_test.go
@@ -20,9 +20,9 @@ package paging_test
import (
"testing"
+ "code.superseriousbusiness.org/gotosocial/internal/config"
+ "code.superseriousbusiness.org/gotosocial/internal/paging"
"github.com/stretchr/testify/suite"
- "github.com/superseriousbusiness/gotosocial/internal/config"
- "github.com/superseriousbusiness/gotosocial/internal/paging"
)
type PagingSuite struct {