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
cmd/restic/doc.go Normal file
View File

@ -0,0 +1,2 @@
// This package contains the code for the restic executable.
package main

2
crypto/doc.go Normal file
View File

@ -0,0 +1,2 @@
// Package crypto provides all cryptographic operations needed in restic.
package crypto

2
debug/doc.go Normal file
View File

@ -0,0 +1,2 @@
// Package debug provides an infrastructure for logging debug information and breakpoints.
package debug

2
pack/doc.go Normal file
View File

@ -0,0 +1,2 @@
// Package pack provides functions for combining and parsing pack files.
package pack

2
pipe/doc.go Normal file
View File

@ -0,0 +1,2 @@
// Package pipe implements walking a directory in a deterministic order.
package pipe

2
server/doc.go Normal file
View File

@ -0,0 +1,2 @@
// Package server implements a restic repository on top of a backend.
package server

2
test/doc.go Normal file
View File

@ -0,0 +1,2 @@
// Package test_helper provides helper functions for writing tests for restic.
package test_helper