Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Document ¶
type Document struct { // ID is the unique identifier of the document. ID string // Name is the name of the document. Name string // Content is the content of the document. Content string // DocumentHistory is the history of the document. DocumentHistory []History }
Document represents a document to be indexed.
type Folder ¶
type Folder struct { // ID is the unique identifier of the folder. ID string // Name is the name of the folder. Name string // ParentFolderID is the unique identifier of the parent folder. ParentFolderID string // Folders is the folders in the folder. Folders []Folder // Documents is the documents in the folder. Documents []Document }
Click to show internal directories.
Click to hide internal directories.