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
}