Skip to content

Commit

Permalink
更新文档
Browse files Browse the repository at this point in the history
  • Loading branch information
deatil committed Dec 10, 2024
1 parent 6b439eb commit d41cdc2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ func goFilesystem() {
fs := filesystem.New(adapter)

// 使用
fs.Write(path string, contents string) (bool, error)
path := "/path.txt"
contents := []byte("")
fs.Write(path, contents) (bool, error)
}
~~~

Expand Down

0 comments on commit d41cdc2

Please sign in to comment.