aboutsummaryrefslogtreecommitdiffhomepage
path: root/ui
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 /ui
parent11dfcdd3d602f1a5e9a2cc87e0e296c6c5507ee8 (diff)
Add missing package descriptions for GoDoc
Diffstat (limited to 'ui')
-rw-r--r--ui/form/doc.go10
-rw-r--r--ui/session/doc.go10
-rw-r--r--ui/static/doc.go10
-rw-r--r--ui/view/doc.go10
4 files changed, 40 insertions, 0 deletions
diff --git a/ui/form/doc.go b/ui/form/doc.go
new file mode 100644
index 0000000..d2f716f
--- /dev/null
+++ b/ui/form/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 form handles HTML form validation and serialization.
+
+*/
+package form // import "miniflux.app/ui/form"
diff --git a/ui/session/doc.go b/ui/session/doc.go
new file mode 100644
index 0000000..3e47bc6
--- /dev/null
+++ b/ui/session/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 session provides helper functions to work with the user session.
+
+*/
+package session // import "miniflux.app/ui/session"
diff --git a/ui/static/doc.go b/ui/static/doc.go
new file mode 100644
index 0000000..d9aadf3
--- /dev/null
+++ b/ui/static/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 static contains assets for the user interface.
+
+*/
+package static // import "miniflux.app/ui/static"
diff --git a/ui/view/doc.go b/ui/view/doc.go
new file mode 100644
index 0000000..4ced5dc
--- /dev/null
+++ b/ui/view/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 view handles template parameters.
+
+*/
+package view // import "miniflux.app/ui/view"