edge/pkg/app/app.go

17 lines
297 B
Go
Raw Normal View History

2023-02-09 12:16:36 +01:00
package app
type ID string
type Manifest struct {
ID ID `yaml:"id"`
Version string `yaml:"version"`
Title string `yaml:"title"`
Description string `yaml:"description"`
Tags []string `yaml:"tags"`
}
type App struct {
ID ID
Manifest *Manifest
}