mirror of
https://github.com/foomo/typesense.git
synced 2025-10-16 12:45:37 +00:00
14 lines
192 B
Go
14 lines
192 B
Go
package typesenseapi
|
|
|
|
type RevisionID string
|
|
type Query string
|
|
type IndexID string
|
|
type DocumentID string
|
|
|
|
type Scores map[DocumentID]Score
|
|
|
|
type Score struct {
|
|
ID DocumentID
|
|
Index int
|
|
}
|