fs_go116.go 241 B

1234567891011121314
  1. // Copyright 2021 Ross Light
  2. // SPDX-License-Identifier: ISC
  3. // +build go1.16
  4. package fs
  5. import "io/fs"
  6. // FS is an alias for the io/fs.FS interface.
  7. type FS = fs.FS
  8. // File is an alias for the io/fs.File interface.
  9. type File = fs.File