package
Version:
v1.0.0-main.54
Opens a new window with list of versions in this module.
Published: Feb 11, 2025
License: Apache-2.0
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type ChapterValues struct {
Name string `firestore:"name"`
Sections []SectionValues `firestore:"sections"`
CreatedAt time.Time `firestore:"createdAt"`
UpdatedAt time.Time `firestore:"updatedAt"`
}
type GraphChildValues struct {
Name string `firestore:"name"`
Relation string `firestore:"relation"`
Descrition string `firestore:"description"`
Children []GraphChildValues `firestore:"children"`
}
type GraphValues struct {
Paragraph string `firestore:"paragraph"`
Children []GraphChildValues `firestore:"children"`
CreatedAt time.Time `firestore:"createdAt"`
UpdatedAt time.Time `firestore:"updatedAt"`
}
type PaperValues struct {
Content string `firestore:"content"`
CreatedAt time.Time `firestore:"createdAt"`
UpdatedAt time.Time `firestore:"updatedAt"`
}
type ProjectValues struct {
Name string `firestore:"name"`
Description string `firestore:"description,omitempty"`
ChapterIds []string `firestore:"chapterIds,omitempty"`
UserId string `firestore:"userId"`
CreatedAt time.Time `firestore:"createdAt"`
UpdatedAt time.Time `firestore:"updatedAt"`
}
type SectionValues struct {
Id string `firestore:"id"`
Name string `firestore:"name"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.