package
Version:
v0.17.3
Opens a new window with list of versions in this module.
Published: Jul 31, 2026
License: Apache-2.0, Apache-2.0
Opens a new window with license information.
Imports: 6
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
func BuildMinimalCatalog() string
BuildMinimalCatalog builds the minimal catalog via data structures, then formats strictly.
FromEvents builds a gRPC catalog from recorded events deterministically.
type Catalog struct {
Services []Service `json:"services"`
}
type Method struct {
Name string `json:"name"`
Decoded bool `json:"decoded"`
ClientStream bool `json:"clientStream,omitzero"`
ServerStream bool `json:"serverStream,omitzero"`
ReqSchema *model.Schema `json:"requestSchema,omitempty"`
ResSchema *model.Schema `json:"responseSchema,omitempty"`
}
type Service struct {
Package string `json:"package"`
Service string `json:"service"`
Methods []Method `json:"methods"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.