Skip to content

Commit

Permalink
feat: change module and repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Pikeev committed Nov 12, 2024
1 parent b0452fb commit 8bb0f49
Show file tree
Hide file tree
Showing 19 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ GOTENBERG_VERSION=8.12.0
GOTENBERG_LOG_LEVEL=ERROR
VERSION=snapshot
GOLANGCI_LINT_VERSION=1.61.0
REPO=dcaraxes/gotenberg-go-client/v8
REPO=runatal/gotenberg-go-client/v8

# gofmt and goimports all go files.
fmt:
Expand Down
2 changes: 1 addition & 1 deletion baserequest.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"encoding/json"
"net/http"

"github.com/dcaraxes/gotenberg-go-client/v8/document"
"github.com/runatal/gotenberg-go-client/v8/document"
)

type baseRequester interface {
Expand Down
2 changes: 1 addition & 1 deletion build/tests/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ set -xe
gotenberg --api-enable-basic-auth &
sleep 10
export CGO_ENABLED=1
go test -race -cover -covermode=atomic github.com/dcaraxes/gotenberg-go-client/v8
go test -race -cover -covermode=atomic github.com/runatal/gotenberg-go-client/v8
sleep 10 # allows Gotenberg to remove generated files.
2 changes: 1 addition & 1 deletion chromium.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strconv"
"time"

"github.com/dcaraxes/gotenberg-go-client/v8/document"
"github.com/runatal/gotenberg-go-client/v8/document"
)

type chromiumRequest struct {
Expand Down
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/dcaraxes/gotenberg-go-client/v8
module github.com/runatal/gotenberg-go-client/v8

go 1.23.2

Expand Down
2 changes: 1 addition & 1 deletion html.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package gotenberg

import "github.com/dcaraxes/gotenberg-go-client/v8/document"
import "github.com/runatal/gotenberg-go-client/v8/document"

const (
endpointHTMLConvert = "/forms/chromium/convert/html"
Expand Down
4 changes: 2 additions & 2 deletions html_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

"github.com/dcaraxes/gotenberg-go-client/v8/document"
"github.com/dcaraxes/gotenberg-go-client/v8/test"
"github.com/runatal/gotenberg-go-client/v8/document"
"github.com/runatal/gotenberg-go-client/v8/test"
)

func TestHTML(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion libreoffice.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package gotenberg
import (
"strconv"

"github.com/dcaraxes/gotenberg-go-client/v8/document"
"github.com/runatal/gotenberg-go-client/v8/document"
)

const endpointOfficeConvert = "/forms/libreoffice/convert"
Expand Down
4 changes: 2 additions & 2 deletions libreoffice_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

"github.com/dcaraxes/gotenberg-go-client/v8/document"
"github.com/dcaraxes/gotenberg-go-client/v8/test"
"github.com/runatal/gotenberg-go-client/v8/document"
"github.com/runatal/gotenberg-go-client/v8/test"
)

func TestOffice(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion markdown.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package gotenberg

import "github.com/dcaraxes/gotenberg-go-client/v8/document"
import "github.com/runatal/gotenberg-go-client/v8/document"

const (
endpointMarkdownConvert = "/forms/chromium/convert/markdown"
Expand Down
4 changes: 2 additions & 2 deletions markdown_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

"github.com/dcaraxes/gotenberg-go-client/v8/document"
"github.com/dcaraxes/gotenberg-go-client/v8/test"
"github.com/runatal/gotenberg-go-client/v8/document"
"github.com/runatal/gotenberg-go-client/v8/test"
)

func TestMarkdown(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion metadata_reader.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package gotenberg

import "github.com/dcaraxes/gotenberg-go-client/v8/document"
import "github.com/runatal/gotenberg-go-client/v8/document"

type ReadMetadataRequest struct {
pdfs []document.Document
Expand Down
4 changes: 2 additions & 2 deletions metadata_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

"github.com/dcaraxes/gotenberg-go-client/v8/document"
"github.com/dcaraxes/gotenberg-go-client/v8/test"
"github.com/runatal/gotenberg-go-client/v8/document"
"github.com/runatal/gotenberg-go-client/v8/test"
)

func TestReadWriteMetadata(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion metadata_writer.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package gotenberg

import "github.com/dcaraxes/gotenberg-go-client/v8/document"
import "github.com/runatal/gotenberg-go-client/v8/document"

type WriteMetadataRequest struct {
pdfs []document.Document
Expand Down
2 changes: 1 addition & 1 deletion multipart.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"io"
"mime/multipart"

"github.com/dcaraxes/gotenberg-go-client/v8/document"
"github.com/runatal/gotenberg-go-client/v8/document"
)

func multipartForm(r baseRequester) (body *bytes.Buffer, contentType string, err error) {
Expand Down
2 changes: 1 addition & 1 deletion pdfengines.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package gotenberg
import (
"strconv"

"github.com/dcaraxes/gotenberg-go-client/v8/document"
"github.com/runatal/gotenberg-go-client/v8/document"
)

// MergeRequest facilitates work with PDF files with the Gotenberg API.
Expand Down
4 changes: 2 additions & 2 deletions pdfengines_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

"github.com/dcaraxes/gotenberg-go-client/v8/document"
"github.com/dcaraxes/gotenberg-go-client/v8/test"
"github.com/runatal/gotenberg-go-client/v8/document"
"github.com/runatal/gotenberg-go-client/v8/test"
)

func TestMerge(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion url.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package gotenberg

import "github.com/dcaraxes/gotenberg-go-client/v8/document"
import "github.com/runatal/gotenberg-go-client/v8/document"

const (
endpointURLConvert = "/forms/chromium/convert/url"
Expand Down
4 changes: 2 additions & 2 deletions url_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

"github.com/dcaraxes/gotenberg-go-client/v8/document"
"github.com/dcaraxes/gotenberg-go-client/v8/test"
"github.com/runatal/gotenberg-go-client/v8/document"
"github.com/runatal/gotenberg-go-client/v8/test"
)

func TestURL(t *testing.T) {
Expand Down

0 comments on commit 8bb0f49

Please sign in to comment.