blob: 723c24c0bb57579b331a22dc91ea4126677a7491 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|