This is an automated email from the ASF dual-hosted git repository.

spacewander pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-go-plugin-runner.git


The following commit(s) were added to refs/heads/master by this push:
     new 6f24901  docs: fix render for pkg.go.dev
6f24901 is described below

commit 6f249010b83a124bc30e940635db7fa0838e2c4a
Author: spacewander <[email protected]>
AuthorDate: Tue Jul 6 11:09:34 2021 +0800

    docs: fix render for pkg.go.dev
---
 cmd/go-runner/main.go             | 1 +
 cmd/go-runner/main_test.go        | 1 +
 cmd/go-runner/plugins/say.go      | 1 +
 cmd/go-runner/plugins/say_test.go | 1 +
 cmd/go-runner/version.go          | 1 +
 internal/http/request.go          | 1 +
 internal/http/request_test.go     | 1 +
 internal/http/response.go         | 1 +
 internal/http/response_test.go    | 1 +
 internal/plugin/conf.go           | 1 +
 internal/plugin/conf_test.go      | 1 +
 internal/plugin/plugin.go         | 1 +
 internal/plugin/plugin_test.go    | 1 +
 internal/server/error.go          | 1 +
 internal/server/error_test.go     | 1 +
 internal/server/server.go         | 1 +
 internal/server/server_test.go    | 1 +
 internal/util/pool.go             | 1 +
 pkg/http/http.go                  | 1 +
 pkg/log/log.go                    | 1 +
 pkg/plugin/plugin.go              | 1 +
 pkg/runner/runner.go              | 1 +
 22 files changed, 22 insertions(+)

diff --git a/cmd/go-runner/main.go b/cmd/go-runner/main.go
index f60ccac..1605e7d 100644
--- a/cmd/go-runner/main.go
+++ b/cmd/go-runner/main.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package main
 
 import (
diff --git a/cmd/go-runner/main_test.go b/cmd/go-runner/main_test.go
index 5dfca71..e9a6c00 100644
--- a/cmd/go-runner/main_test.go
+++ b/cmd/go-runner/main_test.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package main
 
 import (
diff --git a/cmd/go-runner/plugins/say.go b/cmd/go-runner/plugins/say.go
index 8c38fff..05ed639 100644
--- a/cmd/go-runner/plugins/say.go
+++ b/cmd/go-runner/plugins/say.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package plugins
 
 import (
diff --git a/cmd/go-runner/plugins/say_test.go 
b/cmd/go-runner/plugins/say_test.go
index b9b0e41..61b2362 100644
--- a/cmd/go-runner/plugins/say_test.go
+++ b/cmd/go-runner/plugins/say_test.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package plugins
 
 import (
diff --git a/cmd/go-runner/version.go b/cmd/go-runner/version.go
index cc088d4..268aafd 100644
--- a/cmd/go-runner/version.go
+++ b/cmd/go-runner/version.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package main
 
 import (
diff --git a/internal/http/request.go b/internal/http/request.go
index 0c17ddb..3728d72 100644
--- a/internal/http/request.go
+++ b/internal/http/request.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package http
 
 import (
diff --git a/internal/http/request_test.go b/internal/http/request_test.go
index bdb4c2f..c14041a 100644
--- a/internal/http/request_test.go
+++ b/internal/http/request_test.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package http
 
 import (
diff --git a/internal/http/response.go b/internal/http/response.go
index 14ddeb2..acf349e 100644
--- a/internal/http/response.go
+++ b/internal/http/response.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package http
 
 import (
diff --git a/internal/http/response_test.go b/internal/http/response_test.go
index deab627..f9d9dd4 100644
--- a/internal/http/response_test.go
+++ b/internal/http/response_test.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package http
 
 import (
diff --git a/internal/plugin/conf.go b/internal/plugin/conf.go
index b95ea3d..cf2e76e 100644
--- a/internal/plugin/conf.go
+++ b/internal/plugin/conf.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package plugin
 
 import (
diff --git a/internal/plugin/conf_test.go b/internal/plugin/conf_test.go
index cbca94a..3950cca 100644
--- a/internal/plugin/conf_test.go
+++ b/internal/plugin/conf_test.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package plugin
 
 import (
diff --git a/internal/plugin/plugin.go b/internal/plugin/plugin.go
index 23f27a9..c82c7d6 100644
--- a/internal/plugin/plugin.go
+++ b/internal/plugin/plugin.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package plugin
 
 import (
diff --git a/internal/plugin/plugin_test.go b/internal/plugin/plugin_test.go
index f1a6b9a..94ac093 100644
--- a/internal/plugin/plugin_test.go
+++ b/internal/plugin/plugin_test.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package plugin
 
 import (
diff --git a/internal/server/error.go b/internal/server/error.go
index 0978b4e..232d0c0 100644
--- a/internal/server/error.go
+++ b/internal/server/error.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package server
 
 import (
diff --git a/internal/server/error_test.go b/internal/server/error_test.go
index 02d52f5..befa8f2 100644
--- a/internal/server/error_test.go
+++ b/internal/server/error_test.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package server
 
 import (
diff --git a/internal/server/server.go b/internal/server/server.go
index 0d32c70..c013df0 100644
--- a/internal/server/server.go
+++ b/internal/server/server.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package server
 
 import (
diff --git a/internal/server/server_test.go b/internal/server/server_test.go
index c613789..0d99cfa 100644
--- a/internal/server/server_test.go
+++ b/internal/server/server_test.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package server
 
 import (
diff --git a/internal/util/pool.go b/internal/util/pool.go
index 79022da..911ec7e 100644
--- a/internal/util/pool.go
+++ b/internal/util/pool.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package util
 
 import (
diff --git a/pkg/http/http.go b/pkg/http/http.go
index 5b44603..96f8775 100644
--- a/pkg/http/http.go
+++ b/pkg/http/http.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package http
 
 import (
diff --git a/pkg/log/log.go b/pkg/log/log.go
index 08ac5a3..55e24d8 100644
--- a/pkg/log/log.go
+++ b/pkg/log/log.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package log
 
 import (
diff --git a/pkg/plugin/plugin.go b/pkg/plugin/plugin.go
index e8f6992..c6b59bc 100644
--- a/pkg/plugin/plugin.go
+++ b/pkg/plugin/plugin.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package plugin
 
 import (
diff --git a/pkg/runner/runner.go b/pkg/runner/runner.go
index 4b66a87..9a8585f 100644
--- a/pkg/runner/runner.go
+++ b/pkg/runner/runner.go
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package runner
 
 import (

Reply via email to