diff options
Diffstat (limited to 'src/github/client.h')
-rw-r--r-- | src/github/client.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/github/client.h b/src/github/client.h new file mode 100644 index 0000000..723c24c --- /dev/null +++ b/src/github/client.h @@ -0,0 +1,17 @@ +// +// Created by Anshul Gupta on 4/4/25. +// + +#ifndef GITHUB_CLIENT_H +#define GITHUB_CLIENT_H + +#include "../client.h" + +#include "types.h" + +char *github_identity(const gql_client *client); + +int github_list_user_repos(const gql_client *client, const char *username, + const char *after, struct gh_list_repos_res *res); + +#endif // GITHUB_CLIENT_H |