Filesystem abstraction for Golang. Supports local and S3
Find a file
2024-11-22 13:31:14 -05:00
.gitignore Initial commit 2024-11-17 10:00:48 -05:00
file.go add open, write 2024-11-18 16:34:07 -05:00
go.mod fix issue where s3 would not return a ErrFileNotFound 2024-11-20 13:45:51 -05:00
go.sum fix issue where s3 would not return a ErrFileNotFound 2024-11-20 13:45:51 -05:00
LICENSE Initial commit 2024-11-17 10:00:48 -05:00
local_errors_test.go fix typos 2024-11-21 12:12:05 -05:00
local_test.go Add CopyDir and DeleteDir and their respective tests 2024-11-20 15:43:34 -05:00
README.md add README 2024-11-22 10:11:41 -05:00
s3_errors_test.go fix typos 2024-11-21 12:12:05 -05:00
s3_test.go Add CopyDir and DeleteDir and their respective tests 2024-11-20 15:43:34 -05:00
storage.go add option to use an existing s3 client. 2024-11-22 13:31:14 -05:00
Taskfile.yml fix issue where s3 would not return a ErrFileNotFound 2024-11-20 13:45:51 -05:00

Fsys - Filesystem Abstraction for Golang

fsys is a package that abstracts the local and the s3 filesystem to try to provide a standard interface for both.

pkg.go.dev documentation

Examples

coming soon