summaryrefslogtreecommitdiffstats
path: root/plugin/bundle_info.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/bundle_info.go')
-rw-r--r--plugin/bundle_info.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/plugin/bundle_info.go b/plugin/bundle_info.go
new file mode 100644
index 000000000..9dc47ceea
--- /dev/null
+++ b/plugin/bundle_info.go
@@ -0,0 +1,20 @@
+package plugin
+
+type BundleInfo struct {
+ Path string
+
+ Manifest *Manifest
+ ManifestPath string
+ ManifestError error
+}
+
+// Returns bundle info for the given path. The return value is never nil.
+func BundleInfoForPath(path string) *BundleInfo {
+ m, mpath, err := FindManifest(path)
+ return &BundleInfo{
+ Path: path,
+ Manifest: m,
+ ManifestPath: mpath,
+ ManifestError: err,
+ }
+}