Add doc stubs to all the packages

This commit is contained in:
Alexander Neumann
2015-05-09 13:00:01 +02:00
parent 9ac6a1d232
commit 861e1b9910
7 changed files with 14 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
// This package contains the code for the restic executable.
package main
+2
View File
@@ -0,0 +1,2 @@
// Package crypto provides all cryptographic operations needed in restic.
package crypto
+2
View File
@@ -0,0 +1,2 @@
// Package debug provides an infrastructure for logging debug information and breakpoints.
package debug
+2
View File
@@ -0,0 +1,2 @@
// Package pack provides functions for combining and parsing pack files.
package pack
+2
View File
@@ -0,0 +1,2 @@
// Package pipe implements walking a directory in a deterministic order.
package pipe
+2
View File
@@ -0,0 +1,2 @@
// Package server implements a restic repository on top of a backend.
package server
+2
View File
@@ -0,0 +1,2 @@
// Package test_helper provides helper functions for writing tests for restic.
package test_helper