godocs for bundle struct

This commit is contained in:
vyzo 2022-05-16 21:48:12 +03:00
parent eee73eed59
commit 6360107d53

View File

@ -16,13 +16,13 @@ type BundleSpec struct {
} }
type Bundle struct { type Bundle struct {
// actors version in this bundle // Version is the actors version in this bundle
Version actors.Version Version actors.Version
// release id // Release is the release id
Release string Release string
// bundle path: optional, uses the appropriate release bundle if unset // Path is the (optional) bundle path; uses the appropriate release bundle if unset
Path string Path string
// development version; when set, in conjunction with path, it will always // Devlopment indicates whether this is a development version; when set, in conjunction with path,
// load the bundle to the blockstore // it will always load the bundle to the blockstore
Development bool Development bool
} }