Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
8be75631
Commit
8be75631
authored
Feb 10, 2015
by
Juan Batiz-Benet
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #770 from jbenet/pkg-docs
document some packages
parents
f6a336cc
140c70d7
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
0 deletions
+8
-0
cmd/ipfs/main.go
cmd/ipfs/main.go
+1
-0
core/commands/add.go
core/commands/add.go
+1
-0
core/core.go
core/core.go
+2
-0
exchange/bitswap/decision/engine.go
exchange/bitswap/decision/engine.go
+1
-0
exchange/bitswap/wantlist/wantlist.go
exchange/bitswap/wantlist/wantlist.go
+2
-0
namesys/interface.go
namesys/interface.go
+1
-0
No files found.
cmd/ipfs/main.go
View file @
8be75631
// cmd/ipfs implements the primary CLI binary for ipfs
package
main
import
(
...
...
core/commands/add.go
View file @
8be75631
...
...
@@ -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
{
...
...
core/core.go
View file @
8be75631
// package core implements the IpfsNode object and methods for constructing
// and properly setting it up.
package
core
import
(
...
...
exchange/bitswap/decision/engine.go
View file @
8be75631
// package decision implements the decision engine for the bitswap service.
package
decision
import
(
...
...
exchange/bitswap/wantlist/wantlist.go
View file @
8be75631
// package wantlist implements an object for bitswap that contains the keys
// that a given peer wants.
package
wantlist
import
(
...
...
namesys/interface.go
View file @
8be75631
// package namesys implements various functionality for the ipns naming system.
package
namesys
import
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment