1234567891011121314151617181920 |
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <stdbool.h>
- #include "utils.h"
- #include "keystone.h"
- static struct command subcommands[] = {
- CMD_DEF(catalog),
- CMD_DEF(token),
- CMD_DEF(service),
- { NULL, NULL }
- };
- int main(int argc, char** argv) {
- common_main(argc, argv, subcommands);
- return 0;
- }
|