lint/revive: add package doc comments

This silences all of the "should have a package comment" lint warnings
from golangci-lint.

Signed-off-by: Aleksa Sarai <cyphar@cyphar.com>
This commit is contained in:
Aleksa Sarai
2025-09-29 16:41:54 +10:00
parent 8b06dd8743
commit 627054d246
27 changed files with 96 additions and 12 deletions
+8
View File
@@ -14,6 +14,14 @@
* limitations under the License.
*/
// recvtty is a sample implementation of the consumer side of the
// --console-socket interface for runc. It supports forwarding console events
// to and from the container process, as well as acting like a /dev/null
// black-hole.
//
// This tool is only really intended to be used within runc's integration
// tests, but can be used as an example of how the --console-socket protocol
// works.
package main
import (