blob: aea7fbe302c206c300088b79a421cea3933122d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright (c) 2026 Arslaan Pathan
// This software is licensed under the ARPL. See LICENSE for details.
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"`
}
|