Files
ropkg/ropam/repo/list.c

23 lines
419 B
C
Raw Normal View History

#include "../commands.h"
#include <blue/cmd.h>
2025-07-17 18:11:30 +01:00
static int repo_list(
const b_command *self,
const b_arglist *opt,
const b_array *args)
{
return 0;
}
2025-07-17 18:11:30 +01:00
B_COMMAND(CMD_REPO_LIST, CMD_REPO)
{
B_COMMAND_NAME("list");
B_COMMAND_SHORT_NAME('L');
2025-07-17 18:11:30 +01:00
B_COMMAND_DESC("list all registered package repositories.");
B_COMMAND_FLAGS(B_COMMAND_SHOW_HELP_BY_DEFAULT);
2025-07-17 18:11:30 +01:00
B_COMMAND_FUNCTION(repo_list);
B_COMMAND_HELP_OPTION();
}