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
interface-go-dms3-core
Commits
7b2fdc90
Commit
7b2fdc90
authored
Oct 03, 2018
by
Łukasz Magiera
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
coreapi unixfs: unixfs.Get
License: MIT Signed-off-by:
Łukasz Magiera
<
magik6k@gmail.com
>
parent
9a760d89
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
unixfs.go
unixfs.go
+8
-0
No files found.
unixfs.go
View file @
7b2fdc90
...
@@ -13,8 +13,16 @@ import (
...
@@ -13,8 +13,16 @@ import (
// NOTE: This API is heavily WIP, things are guaranteed to break frequently
// NOTE: This API is heavily WIP, things are guaranteed to break frequently
type
UnixfsAPI
interface
{
type
UnixfsAPI
interface
{
// Add imports the data from the reader into merkledag file
// Add imports the data from the reader into merkledag file
//
// TODO: a long useful comment on how to use this for many different scenarios
Add
(
context
.
Context
,
files
.
File
,
...
options
.
UnixfsAddOption
)
(
ResolvedPath
,
error
)
Add
(
context
.
Context
,
files
.
File
,
...
options
.
UnixfsAddOption
)
(
ResolvedPath
,
error
)
// Get returns a read-only handle to a file tree referenced by a path
//
// Note that some implementations of this API may apply the specified context
// to operations performed on the returned file
Get
(
context
.
Context
,
Path
)
(
files
.
File
,
error
)
// Cat returns a reader for the file
// Cat returns a reader for the file
Cat
(
context
.
Context
,
Path
)
(
Reader
,
error
)
Cat
(
context
.
Context
,
Path
)
(
Reader
,
error
)
...
...
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