mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 12:42:30 +04:00
11 lines
261 B
C
11 lines
261 B
C
|
|
#include "../cli_commands.h"
|
||
|
|
|
||
|
|
static void execute(PipeSide* pipe, FuriString* args, void* context) {
|
||
|
|
UNUSED(pipe);
|
||
|
|
UNUSED(args);
|
||
|
|
UNUSED(context);
|
||
|
|
puts("Hello, World!");
|
||
|
|
}
|
||
|
|
|
||
|
|
CLI_COMMAND_INTERFACE(hello_world, execute, CliCommandFlagDefault, 768);
|