Can now accept location

This commit is contained in:
2026-03-08 15:38:28 +08:00
parent 912f9fd0ad
commit 33a7c04e09
12 changed files with 286 additions and 148 deletions

View File

@@ -19,9 +19,14 @@ type QueryObject struct {
Results *[]ISearchable
}
type TableCell struct {
Name string
Value string
}
type IQueryResult interface {
Message() (string, error)
DataType() string
GetTableData() [][]map[string]string
GetTableData() [][]TableCell
Consumed() bool
}