Second pass — removes chat-switchboard version numbers from config field docs, section headers, file headers, and test comments. These were pre-fork version tags that don't apply to switchboard-core. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
14 lines
591 B
Go
14 lines
591 B
Go
package models
|
|
|
|
// ── Extension Dependencies ──────────────────
|
|
|
|
// ExtDependency records that a consumer package depends on a library package.
|
|
// Created at consumer install time from the manifest's "dependencies" map.
|
|
// Immutable — update by uninstalling/reinstalling the consumer.
|
|
type ExtDependency struct {
|
|
ConsumerID string `json:"consumer_id" db:"consumer_id"`
|
|
LibraryID string `json:"library_id" db:"library_id"`
|
|
VersionSpec string `json:"version_spec" db:"version_spec"`
|
|
ResolvedVer string `json:"resolved_ver" db:"resolved_ver"`
|
|
}
|