MCPcopy Create free account
hub / github.com/compozy/agh / networkListValues

Function networkListValues

internal/cli/client.go:5702–5711  ·  view source on GitHub ↗
(limit int, after string)

Source from the content-addressed store, hash-verified

5700}
5701
5702func networkListValues(limit int, after string) url.Values {
5703 values := url.Values{}
5704 if limit > 0 {
5705 values.Set("limit", strconv.Itoa(limit))
5706 }
5707 if trimmed := strings.TrimSpace(after); trimmed != "" {
5708 values.Set("after", trimmed)
5709 }
5710 return values
5711}
5712
5713func networkBasePath(workspaceRef string) (string, error) {
5714 workspaceRef, err := requireNetworkPathValue("workspace_id", workspaceRef)

Callers 3

networkThreadsValuesFunction · 0.85
networkDirectsValuesFunction · 0.85

Calls 1

SetMethod · 0.45

Tested by

no test coverage detected