This repository has been archived on 2026-04-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
core/server/models/ext_dependency.go
Jeffrey Smith 3d4228f868
All checks were successful
CI/CD / detect-changes (push) Successful in 4s
CI/CD / test-frontend (push) Successful in 6s
CI/CD / test-sqlite (push) Successful in 2m46s
CI/CD / test-go-pg (push) Successful in 2m47s
CI/CD / build-and-deploy (push) Successful in 26s
Feat v0.6.3 dead code sweep (#38)
Co-authored-by: Jeffrey Smith <jasafpro@gmail.com>
Co-committed-by: Jeffrey Smith <jasafpro@gmail.com>
2026-03-31 12:37:47 +00:00

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"`
}