mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-05-08 12:30:39 -05:00
523f704034
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
14 lines
394 B
Go
14 lines
394 B
Go
package proto
|
|
|
|
// BleveAccount wraps the generated Account and adds a bleve type that is used to distinguish documents in the index
|
|
type BleveAccount struct {
|
|
Account
|
|
BleveType string `json:"bleve_type"`
|
|
}
|
|
|
|
// BleveGroup wraps the generated Group and adds a bleve type that is used to distinguish documents in the index
|
|
type BleveGroup struct {
|
|
Group
|
|
BleveType string `json:"bleve_type"`
|
|
}
|