package
Version:
v0.5.0
Opens a new window with list of versions in this module.
Published: Jul 20, 2026
License: MIT
Opens a new window with license information.
Imports: 4
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
Package manifest parses and persists the multiversa.toml declarative manifest.
type Agents struct {
Enabled []string `toml:"enabled" json:"enabled"`
}
type Backend struct {
Provider string `toml:"provider" json:"provider"`
URL string `toml:"url,omitempty" json:"url,omitempty"`
AnonKey string `toml:"anon_key,omitempty" json:"-"`
}
type Credits struct {
AutoPrint bool `toml:"auto_print" json:"auto_print"`
}
type Manifest struct {
Multiversa Meta `toml:"multiversa" json:"multiversa"`
Stack map[string]string `toml:"stack" json:"stack"`
Agents Agents `toml:"agents" json:"agents"`
Backend Backend `toml:"backend" json:"backend"`
Credits Credits `toml:"credits" json:"credits"`
}
type Meta struct {
Profile string `toml:"profile" json:"profile"`
Ethic string `toml:"ethic" json:"ethic"`
Version string `toml:"version" json:"version"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.