Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CallEdgeResponse ¶ added in v0.5.0
type CallNodeDetailResponse ¶ added in v0.5.0
type CallNodeDetailResponse struct {
Node CallNodeResponse `json:"node"`
Callees []CallNodeSummary `json:"callees"`
Callers []CallNodeSummary `json:"callers"`
}
type CallNodeResponse ¶ added in v0.5.0
type CallNodeResponse struct {
ID int64 `json:"id"`
Directory string `json:"directory"`
Package string `json:"package"`
Symbol string `json:"symbol"`
FilePath string `json:"filePath"`
Line int `json:"line"`
Kind string `json:"kind"`
Signature string `json:"signature,omitempty"`
Doc string `json:"doc,omitempty"`
}
type CallNodeSummary ¶ added in v0.5.0
type ServerMode ¶
type ServerMode string
ServerMode determines the operational mode of the server.
const ( ModeBuild ServerMode = "build" ModePlan ServerMode = "plan" )
type Theme ¶
type Theme struct {
Directory string `json:"directory"`
PrimaryColor string `json:"primaryColor"` // hex input from user, e.g. "#6366f1"
Accent string `json:"accent"` // --accent
AccentHover string `json:"accentHover"` // --accent-hover
AccentSoft string `json:"accentSoft"` // --accent-soft (rgba)
AccentRing string `json:"accentRing"` // --accent-ring (rgba)
OnPrimary string `json:"onPrimary"` // text color on accent bg
Glow string `json:"glow"` // --glow (rgba, for background accents)
Tint string `json:"tint"` // --tint (rgba, ~5% for sidebar/header)
}
Theme holds a per-directory color palette derived from a user-chosen primary color.
Source Files
¶
- callgraph_routes.go
- config_routes.go
- docindex_routes.go
- event_routes.go
- latex_fitz.go
- latex_routes.go
- memory_routes.go
- model_routes.go
- note_routes.go
- permission_routes.go
- plan_routes.go
- pricing_routes.go
- provider_routes.go
- routes.go
- server.go
- session_routes.go
- static.go
- task_routes.go
- theme_routes.go
- version_routes.go
Click to show internal directories.
Click to hide internal directories.