MCPcopy Create free account
hub / github.com/Kethku/Pando / todo_example

Function todo_example

src/ngs.rs:110–132  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

108type TodoFile = Vec<Todo>;
109
110fn todo_example() -> TodoFile {
111 vec![Todo {
112 text: "Finish Specification Language".into(),
113 done: false,
114 dependencies: vec![
115 Todo {
116 text: "Write Example Todo".into(),
117 done: true,
118 dependencies: vec![],
119 },
120 Todo {
121 text: "Write Desired Specification".into(),
122 done: true,
123 dependencies: vec![],
124 },
125 Todo {
126 text: "Generalize Specification".into(),
127 done: false,
128 dependencies: vec![],
129 },
130 ],
131 }]
132}
133
134// fn todo_ngs() -> Specification {
135// Specification {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…