diff options
| author | Arslaan Pathan <[email protected]> | 2026-03-01 18:26:30 +1300 |
|---|---|---|
| committer | Arslaan Pathan <[email protected]> | 2026-03-01 18:26:30 +1300 |
| commit | 6cd1cd5f1dfdda4c43a272bee7b36cbb83f65a2c (patch) | |
| tree | e64bb850e322d827d7d8e8f36e05653f5e491acc /internal/manifest | |
| download | kiiro-6cd1cd5f1dfdda4c43a272bee7b36cbb83f65a2c.tar.xz kiiro-6cd1cd5f1dfdda4c43a272bee7b36cbb83f65a2c.zip | |
Initial commit
Diffstat (limited to 'internal/manifest')
| -rw-r--r-- | internal/manifest/manifest.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/internal/manifest/manifest.go b/internal/manifest/manifest.go new file mode 100644 index 0000000..5914b0e --- /dev/null +++ b/internal/manifest/manifest.go @@ -0,0 +1,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"` +} + |
