launcher/types.go

19 lines
255 B
Go
Raw Normal View History

2023-08-19 09:30:59 +02:00
package main
type CommandSet struct {
Name string
Exec string
Inplace bool
Dynamic string
Commands []*CommandSet
// internal state
completed bool
}
type SearchResult struct {
Search string
Error string
Commands []*CommandSet
}