build: add package comments to silence revive linter

This commit is contained in:
albertony
2022-08-28 13:43:51 +02:00
parent 02b7613104
commit 555def2da7
132 changed files with 164 additions and 68 deletions
+3 -2
View File
@@ -1,6 +1,7 @@
//go:generate go run assets_generate.go
// Package data provides utilities for DLNA server.
// The "go:generate" directive compiles static assets by running assets_generate.go
//
//go:generate go run assets_generate.go
package data
import (
+1
View File
@@ -1,3 +1,4 @@
// Package dlna provides DLNA server.
package dlna
import (
+1
View File
@@ -1,3 +1,4 @@
// Package dlnaflags provides utility functionality to DLNA.
package dlnaflags
import (
+1
View File
@@ -1,3 +1,4 @@
// Package upnpav provides utilities for DLNA server.
package upnpav
import (
+1 -2
View File
@@ -1,8 +1,7 @@
// Package ftp implements an FTP server for rclone
//go:build !plan9
// +build !plan9
// Package ftp implements an FTP server for rclone
package ftp
import (
+3 -2
View File
@@ -1,6 +1,7 @@
//go:generate go run assets_generate.go
// Package data provides common functionality for http servers
// The "go:generate" directive compiles static assets by running assets_generate.go
//
//go:generate go run assets_generate.go
package data
import (
+1
View File
@@ -1,3 +1,4 @@
// Package http provides common functionality for http servers
package http
import (
+1
View File
@@ -1,3 +1,4 @@
// Package httpflags provides utility functionality to HTTP.
package httpflags
import (
+1
View File
@@ -1,3 +1,4 @@
// Package serve provides the serve command.
package serve
import (
+1 -2
View File
@@ -1,8 +1,7 @@
// Package sftp implements an SFTP server to serve an rclone VFS
//go:build !plan9
// +build !plan9
// Package sftp implements an SFTP server to serve an rclone VFS
package sftp
import (