zsvo/pkg/types/pkginfo.go
itexpert228 e351ee62d1
кал
2026-03-09 22:40:05 +03:00

11 lines
342 B
Go

package types
// PkgInfo represents package metadata
type PkgInfo struct {
Name string `toml:"name"`
Version string `toml:"version"`
Description string `toml:"description,omitempty"`
Dependencies []string `toml:"dependencies,omitempty"`
Files []string `toml:"files"`
InstallDate string `toml:"install_date"`
}