diff options
Diffstat (limited to 'internal/manifest/manifest.go')
| -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"` +} + |
