MCPcopy Index your code
hub / github.com/endbasic/endbasic / header

Function header

std/src/help.rs:45–53  ·  view source on GitHub ↗

Returns the header for the help summary.

()

Source from the content-addressed store, hash-verified

43
44/// Returns the header for the help summary.
45fn header() -> Vec<String> {
46 vec![
47 "".to_owned(),
48 format!(" This is EndBASIC {}.", env!("CARGO_PKG_VERSION")),
49 "".to_owned(),
50 format!(" Project page at <{}>", env!("CARGO_PKG_HOMEPAGE")),
51 " License GNU AGPLv3+ <https://www.gnu.org/licenses/agpl-3.0.html>".to_owned(),
52 ]
53}
54
55/// Handler for a specific help topic.
56#[async_trait(?Send)]

Callers 3

summaryMethod · 0.85
test_help_pagingFunction · 0.85

Calls

no outgoing calls

Tested by 2

test_help_pagingFunction · 0.68