Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apiendpoint/api_endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import (
"github.com/jackc/pgerrcode"
"github.com/jackc/pgx/v5/pgconn"

"github.com/riverqueue/riverapiframe/apierror"
"github.com/riverqueue/riverapiframe/internal/validate"
"github.com/riverqueue/apiframe/apierror"
"github.com/riverqueue/apiframe/internal/validate"
)

// Endpoint is a struct that should be embedded on an API endpoint, and which
Expand Down
2 changes: 1 addition & 1 deletion apiendpoint/api_endpoint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
"github.com/jackc/pgx/v5/pgconn"
"github.com/stretchr/testify/require"

"github.com/riverqueue/apiframe/apierror"
"github.com/riverqueue/river/rivershared/riversharedtest"
"github.com/riverqueue/riverapiframe/apierror"
)

func TestMountAndServe(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# riverapiframe [![Build Status](https://github.com/riverqueue/riverapiframe/actions/workflows/ci.yaml/badge.svg?branch=master)](https://github.com/riverqueue/riverapiframe/actions)
# apiframe [![Build Status](https://github.com/riverqueue/apiframe/actions/workflows/ci.yaml/badge.svg?branch=master)](https://github.com/riverqueue/apiframe/actions)

A minimal API framework for various River projects.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/riverqueue/riverapiframe
module github.com/riverqueue/apiframe

go 1.23.0

Expand Down
Loading