Merge pull request #177 from restic/add-src-doc

Add code documentation
This commit is contained in:
Alexander Neumann
2015-05-09 13:15:40 +02:00
11 changed files with 26 additions and 1 deletions
+1 -1
View File
@@ -1,2 +1,2 @@
// Package backend provides local and remote storage for restic backups.
// Package backend provides local and remote storage for restic repositories.
package backend
+2
View File
@@ -0,0 +1,2 @@
// Package local implements repository storage in a local directory.
package local
+3
View File
@@ -0,0 +1,3 @@
// Package sftp implements repository storage in a directory on a remote server
// via the sftp protocol.
package sftp
+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
+6
View File
@@ -0,0 +1,6 @@
// Package restic is the top level package for the restic backup program,
// please see https://github.com/restic/restic for more information.
//
// This package exposes the main components needed to create and restore a
// backup as well as handling things like a local cache of objects.
package restic
+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