aboutsummaryrefslogtreecommitdiff
path: root/internal/manifest
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-03-01 18:26:30 +1300
committerArslaan Pathan <[email protected]>2026-03-01 18:26:30 +1300
commit6cd1cd5f1dfdda4c43a272bee7b36cbb83f65a2c (patch)
treee64bb850e322d827d7d8e8f36e05653f5e491acc /internal/manifest
downloadkiiro-6cd1cd5f1dfdda4c43a272bee7b36cbb83f65a2c.tar.xz
kiiro-6cd1cd5f1dfdda4c43a272bee7b36cbb83f65a2c.zip
Initial commit
Diffstat (limited to 'internal/manifest')
-rw-r--r--internal/manifest/manifest.go11
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"`
+}
+