File: fs.go

package info (click to toggle)
golang-github-foxboron-go-uefi 0.0~git20250207.69fb7db-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,140 kB
  • sloc: makefile: 29; sh: 14
file content (12 lines) | stat: -rw-r--r-- 130 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
package fs

import "github.com/spf13/afero"

// Storage backend
var (
	Fs = afero.NewOsFs()
)

func SetFS(f afero.Fs) {
	Fs = f
}