MCPcopy Create free account
hub / github.com/auth0/auth0-cli / fprintfStr

Function fprintfStr

internal/display/display.go:243–250  ·  view source on GitHub ↗
(w io.Writer, fmtStr string, argsStr ...string)

Source from the content-addressed store, hash-verified

241}
242
243func fprintfStr(w io.Writer, fmtStr string, argsStr ...string) {
244 var args []interface{}
245 for _, a := range argsStr {
246 args = append(args, a)
247 }
248
249 fmt.Fprintf(w, fmtStr, args...)
250}
251
252func writeTable(w io.Writer, header []string, data [][]string) {
253 table := tablewriter.NewWriter(w)

Callers 1

StreamMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected