Commit 8be75631 authored by Juan Batiz-Benet's avatar Juan Batiz-Benet

Merge pull request #770 from jbenet/pkg-docs

document some packages
parents f6a336cc 140c70d7
// cmd/ipfs implements the primary CLI binary for ipfs
package main
import (
......
......@@ -57,6 +57,7 @@ remains to be implemented.
cmds.BoolOption("quiet", "q", "Write minimal output"),
cmds.BoolOption(progressOptionName, "p", "Stream progress data"),
cmds.BoolOption(wrapOptionName, "w", "Wrap files with a directory object"),
cmds.BoolOption("t", "trickle", "Use trickle-dag format for dag generation"),
},
PreRun: func(req cmds.Request) error {
if quiet, _, _ := req.Option("quiet").Bool(); quiet {
......
// package core implements the IpfsNode object and methods for constructing
// and properly setting it up.
package core
import (
......
// package decision implements the decision engine for the bitswap service.
package decision
import (
......
// package wantlist implements an object for bitswap that contains the keys
// that a given peer wants.
package wantlist
import (
......
// package namesys implements various functionality for the ipns naming system.
package namesys
import (
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment