launcher/types.go
2023-08-19 09:30:59 +02:00

19 lines
255 B
Go

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
}