Skip to content

Commit

Permalink
Update README to use new filesytem creation function
Browse files Browse the repository at this point in the history
  • Loading branch information
iychoi committed Mar 17, 2021
1 parent 8ff2642 commit cf028f3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ if err != nil {
Creating a file system object with default configurations.
```go
appName := "delete_file"
filesystem := fs.NewFileSystemWithDefault(account, appName)
filesystem, err := fs.NewFileSystemWithDefault(account, appName)
if err != nil {
panic(err)
}
defer filesystem.Release()
```

Expand Down

0 comments on commit cf028f3

Please sign in to comment.