github.com/microsoft/fabrikate@v1.0.0-alpha.1.0.20210115014322-dc09194d0885/internal/installable/core.go (about) 1 package installable 2 3 type Installable interface { 4 Install() error 5 GetInstallPath() (string, error) 6 Validate() error 7 } 8 9 const installDirName = "_components"