Documentation
¶
Overview ¶
Package webcmd provides CLI command for the web UI.
Package webcmd provides a web-based configuration UI for protobuild.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type CommandResult ¶
type CommandResult struct {
Success bool `json:"success"`
Output string `json:"output"`
Error string `json:"error,omitempty"`
}
CommandResult represents the result of a command execution.
type ProjectStats ¶
type ProjectStats struct {
ProtoFiles int `json:"proto_files"`
TotalLines int `json:"total_lines"`
MessageCount int `json:"message_count"`
ServiceCount int `json:"service_count"`
DependencyCount int `json:"dependency_count"`
PluginCount int `json:"plugin_count"`
ProtoRoots []string `json:"proto_roots"`
VendorDir string `json:"vendor_dir"`
VendorFiles int `json:"vendor_files"`
}
ProjectStats represents project statistics.
Click to show internal directories.
Click to hide internal directories.