aboutsummaryrefslogtreecommitdiffhomepage
path: root/http
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net>2018-10-08 17:24:47 -0700
committerGravatar Frédéric Guillot <fred@miniflux.net>2018-10-08 17:32:17 -0700
commit9dc38a0803ba8b5a7d0cfe023b21ee2ea2aff88a (patch)
tree57c7b1d7aeab6e71c80b04b6ce20943203d8a7be /http
parent11dfcdd3d602f1a5e9a2cc87e0e296c6c5507ee8 (diff)
Add missing package descriptions for GoDoc
Diffstat (limited to 'http')
-rw-r--r--http/client/doc.go10
-rw-r--r--http/cookie/doc.go10
-rw-r--r--http/request/doc.go2
-rw-r--r--http/route/doc.go10
4 files changed, 31 insertions, 1 deletions
diff --git a/http/client/doc.go b/http/client/doc.go
new file mode 100644
index 0000000..64015ca
--- /dev/null
+++ b/http/client/doc.go
@@ -0,0 +1,10 @@
+// Copyright 2018 Frédéric Guillot. All rights reserved.
+// Use of this source code is governed by the Apache 2.0
+// license that can be found in the LICENSE file.
+
+/*
+
+Package client provides an HTTP client builder.
+
+*/
+package client // import "miniflux.app/http/client"
diff --git a/http/cookie/doc.go b/http/cookie/doc.go
new file mode 100644
index 0000000..0efcc76
--- /dev/null
+++ b/http/cookie/doc.go
@@ -0,0 +1,10 @@
+// Copyright 2018 Frédéric Guillot. All rights reserved.
+// Use of this source code is governed by the Apache 2.0
+// license that can be found in the LICENSE file.
+
+/*
+
+Package cookie provides functions to build cookies.
+
+*/
+package cookie // import "miniflux.app/http/cookie"
diff --git a/http/request/doc.go b/http/request/doc.go
index 0c40fb8..8e30337 100644
--- a/http/request/doc.go
+++ b/http/request/doc.go
@@ -4,7 +4,7 @@
/*
-Package request holds helper functions regarding the HTTP request.
+Package request contains helper functions to work with the HTTP request.
*/
package request // import "miniflux.app/http/request"
diff --git a/http/route/doc.go b/http/route/doc.go
new file mode 100644
index 0000000..4b30497
--- /dev/null
+++ b/http/route/doc.go
@@ -0,0 +1,10 @@
+// Copyright 2018 Frédéric Guillot. All rights reserved.
+// Use of this source code is governed by the Apache 2.0
+// license that can be found in the LICENSE file.
+
+/*
+
+Package route contains helper functions to work with defined routes.
+
+*/
+package route // import "miniflux.app/http/route"