MCPcopy Create free account
hub / github.com/MegEngine/MegFlow / start

Function start

flow-quickstart/src/main.rs:219–231  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

217}
218
219fn start() -> Vec<Node<'static>> {
220 let create_project = Node {
221 question: "Enter root path for the project.",
222 default: "megflow-app",
223 callback: make_project,
224 };
225 let choose_type = Node {
226 question: "Enter project type, modelserving/image/video/custom?",
227 default: "modelserving",
228 callback: create_with_type,
229 };
230 vec![create_project, choose_type]
231}
232
233fn main() {
234 let matches = App::new("megflow_quickstart")

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected