Files
Will Browne a1b792b1f5 Plugins: Remove plugin dependency version (#103728)
remove plugin dependency version
2025-04-10 15:02:05 +01:00

23 lines
416 B
Go

package storage
import "fmt"
type ErrPermissionDenied struct {
Path string
}
func (e ErrPermissionDenied) Error() string {
return fmt.Sprintf("could not create %q, permission denied, make sure you have write access to plugin dir", e.Path)
}
type ExtractedPluginArchive struct {
ID string
Version string
Dependencies []*Dependency
Path string
}
type Dependency struct {
ID string
}