keystone.c 342 B

1234567891011121314151617181920
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <stdbool.h>
  5. #include "utils.h"
  6. #include "keystone.h"
  7. static struct command subcommands[] = {
  8. CMD_DEF(catalog),
  9. CMD_DEF(token),
  10. CMD_DEF(service),
  11. { NULL, NULL }
  12. };
  13. int main(int argc, char** argv) {
  14. common_main(argc, argv, subcommands);
  15. return 0;
  16. }