MCPcopy Create free account
hub / github.com/dylan-sutton-chavez/edge-python / added

Function added

cli/src/ui.rs:26–32  ·  view source on GitHub ↗

A `+ name kind` line for an added package.

(name: &str, kind: &str)

Source from the content-addressed store, hash-verified

24
25/// A `+ name kind` line for an added package.
26pub fn added(name: &str, kind: &str) {
27 if plain() {
28 println!(" + {name:<10} {kind}");
29 } else {
30 println!(" {} {name:<10} {}", "+".green(), kind.dimmed());
31 }
32}
33
34/// A `- name` line for a removed package.
35pub fn removed(name: &str) {

Callers 1

addFunction · 0.85

Calls 1

plainFunction · 0.85

Tested by

no test coverage detected