blob: cebeabfb8e33993d71187310dd2474b23212a196 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef STASIS_GITHUB_H
#define STASIS_GITHUB_H
#include <curl/curl.h>
#define STASIS_GITHUB_API_VERSION "2022-11-28"
int get_github_release_notes(const char *api_token, const char *repo, const char *tag, const char *target_commitish, char **output);
#endif //STASIS_GITHUB_H
|