MCPcopy
hub / github.com/rsc/2fa / list

Method list

main.go:209–218  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

207}
208
209func (c *Keychain) list() {
210 var names []string
211 for name := range c.keys {
212 names = append(names, name)
213 }
214 sort.Strings(names)
215 for _, name := range names {
216 fmt.Println(name)
217 }
218}
219
220func noSpace(r rune) rune {
221 if unicode.IsSpace(r) {

Callers 1

mainFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected