mirror of
https://github.com/kairos-io/kairos-sdk.git
synced 2025-04-29 03:45:05 +00:00
12 lines
129 B
Go
12 lines
129 B
Go
package clusterplugin
|
|
|
|
import (
|
|
"github.com/twpayne/go-vfs/v4"
|
|
)
|
|
|
|
var filesystem vfs.FS
|
|
|
|
func init() {
|
|
filesystem = vfs.OSFS
|
|
}
|