aboutsummaryrefslogtreecommitdiffhomepage
path: root/ui
diff options
context:
space:
mode:
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"