aboutsummaryrefslogtreecommitdiff
path: root/internal/manifest/manifest.go
blob: 5914b0ed8d234bc8044e4a8506bc93eba4b67a83 (plain)
1
2
3
4
5
6
7
8
9
10
11
package manifest

type KiiroToml struct {
	Name string `toml:"pkgname"`
	Version string `toml:"version"`
	Architectures string `toml:"archs"`
	Authors []string `toml:"authors"`
	Maintainers []string `toml:"maintainers"`
	Depends []string `toml:"deps"`
}