Merge pull request #55 from c3os-io/feature/cluster-provider

Abstract Cluster Provisioning with Cluster Plugins
This commit is contained in:
Ettore Di Giacinto
2022-08-09 08:01:54 +02:00
committed by Itxaka
commit 2844b7fc15
6 changed files with 644 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package clusterplugin
import "github.com/twpayne/go-vfs"
var filesystem vfs.FS
func init() {
filesystem = vfs.OSFS
}