From 8a4a043e9f752ddf5fc04c0231397e79418d4576 Mon Sep 17 00:00:00 2001
From: Julien Neuhart
Date: Fri, 15 Mar 2019 17:15:47 +0100
Subject: [PATCH] fixing documentation about go library
---
build/docs/content/00-introduction.md | 2 +-
build/docs/content/02-html.md | 6 +++---
build/docs/content/05-office.md | 2 +-
docs/index.html | 10 +++++-----
4 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/build/docs/content/00-introduction.md b/build/docs/content/00-introduction.md
index 15f91a2e..64fa9931 100644
--- a/build/docs/content/00-introduction.md
+++ b/build/docs/content/00-introduction.md
@@ -9,4 +9,4 @@ title: Introduction
* Performance: Google Chrome and Libreoffice (unoconv) started once in the background thanks to PM2
* Failure prevention: PM2 automatically restarts previous processes if they fail
* Assets: send your header, footer, images, fonts, stylesheets and so on for converting your HTML and Markdown to beaufitul PDFs!
-* Easily interact with the API using our [Go](https://github.com/thecodingmachine/gotenberg/pkg) and [PHP](https://github.com/thecodingmachine/gotenberg-php-client) libraries
\ No newline at end of file
+* Easily interact with the API using our [Go](https://github.com/thecodingmachine/gotenberg-go-client) and [PHP](https://github.com/thecodingmachine/gotenberg-php-client) libraries
\ No newline at end of file
diff --git a/build/docs/content/02-html.md b/build/docs/content/02-html.md
index 80f65d8f..ad32f051 100644
--- a/build/docs/content/02-html.md
+++ b/build/docs/content/02-html.md
@@ -39,7 +39,7 @@ $ curl --request POST \
### Go
```golang
-import "github.com/thecodingmachine/gotenberg/pkg"
+import "github.com/thecodingmachine/gotenberg-go-client/v4"
func main() {
c := &gotenberg.Client{Hostname: "http://localhost:3000"}
@@ -113,7 +113,7 @@ $ curl --request POST \
### Go
```golang
-import "github.com/thecodingmachine/gotenberg/pkg"
+import "github.com/thecodingmachine/gotenberg-go-client/v4"
func main() {
c := &gotenberg.Client{Hostname: "http://localhost:3000"}
@@ -266,7 +266,7 @@ $ curl --request POST \
### Go
```golang
-import "github.com/thecodingmachine/gotenberg/pkg"
+import "github.com/thecodingmachine/gotenberg-go-client/v4"
func main() {
c := &gotenberg.Client{Hostname: "http://localhost:3000"}
diff --git a/build/docs/content/05-office.md b/build/docs/content/05-office.md
index d60578b8..9d2258b2 100644
--- a/build/docs/content/05-office.md
+++ b/build/docs/content/05-office.md
@@ -90,7 +90,7 @@ $ curl --request POST \
### Go
```golang
-import "github.com/thecodingmachine/gotenberg/pkg"
+import "github.com/thecodingmachine/gotenberg-go-client/v4"
func main() {
c := &gotenberg.Client{Hostname: "http://localhost:3000"}
diff --git a/docs/index.html b/docs/index.html
index 65fb2708..975fc822 100755
--- a/docs/index.html
+++ b/docs/index.html
@@ -107,7 +107,7 @@
Performance: Google Chrome and Libreoffice (unoconv) started once in the background thanks to PM2
Failure prevention: PM2 automatically restarts previous processes if they fail
Assets: send your header, footer, images, fonts, stylesheets and so on for converting your HTML and Markdown to beaufitul PDFs!
-
Easily interact with the API using our Go and PHP libraries
+
Easily interact with the API using our Go and PHP libraries
@@ -215,7 +215,7 @@ which will be converted to PDF.
import"github.com/thecodingmachine/gotenberg-go-client/v4"funcmain(){c:=&gotenberg.Client{Hostname:"http://localhost:3000"}
@@ -462,7 +462,7 @@ Also, you have to set both paperWidth and paperHeight.
Go
-