mirror of
https://github.com/kairos-io/kairos-sdk.git
synced 2025-06-27 07:27:33 +00:00
10 lines
121 B
Go
10 lines
121 B
Go
|
package clusterplugin
|
||
|
|
||
|
import "github.com/twpayne/go-vfs"
|
||
|
|
||
|
var filesystem vfs.FS
|
||
|
|
||
|
func init() {
|
||
|
filesystem = vfs.OSFS
|
||
|
}
|