Fs takes a URI and returns the filesystem that corresponds to that. This is a way to turn a unique string handle into an appropriate filesystem object that we can interact with. The ctx is used to cancel any operations that it can.
(ctx context.Context, uri string)
| 81 | // filesystem object that we can interact with. The ctx is used to |
| 82 | // cancel any operations that it can. |
| 83 | Fs(ctx context.Context, uri string) (Fs, error) |
| 84 | } |
| 85 | |
| 86 | // DeployWorld is a world interface with all of the deploy functions. |