Returns the header for the help summary.
()
| 43 | |
| 44 | /// Returns the header for the help summary. |
| 45 | fn 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)] |
no outgoing calls