aboutsummaryrefslogtreecommitdiffstats
path: root/internal/wfs/osfs
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2025-04-11 21:26:04 -0700
committerRose Hogenson <rosehogenson@posteo.net>2025-04-11 21:26:04 -0700
commitcc8efbaf13d57021bee8d4b5bd8a1e46ebe54730 (patch)
tree2c863d061a0b7b55f609d7d1d8d213f2d09b424f /internal/wfs/osfs
parentdd79c79266da9a3cbe3cd4267662f3d45aaeebd0 (diff)
downloadccp-cc8efbaf13d57021bee8d4b5bd8a1e46ebe54730.tar.zst
Add documentation
Diffstat (limited to 'internal/wfs/osfs')
-rw-r--r--internal/wfs/osfs/osfs.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/wfs/osfs/osfs.go b/internal/wfs/osfs/osfs.go
index bf6951c..c879f85 100644
--- a/internal/wfs/osfs/osfs.go
+++ b/internal/wfs/osfs/osfs.go
@@ -1,3 +1,4 @@
+// Package osfs implements [wfs.FS] backed by the local filesystem.
package osfs
import (
@@ -15,6 +16,7 @@ var (
_ fs.StatFS = FS{}
)
+// An FS is a [wfs.FS] backed by the local filesystem.
type FS struct{}
func (FS) Open(name string) (fs.File, error) {