Documentation
¶
Overview ¶
Package notes stores private source notes for one local worktree.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Note ¶
type Note struct {
ID string `json:"id"`
File string `json:"file"`
Line int `json:"line"`
LineFingerprint string `json:"lineFingerprint"`
Body string `json:"body"`
Author Author `json:"author"`
State State `json:"state"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}
type Store ¶
type Store struct {
// contains filtered or unexported fields
}
func (*Store) Sync ¶
func (s *Store) Sync() (SyncResult, error)
type SyncResult ¶
Click to show internal directories.
Click to hide internal directories.