blob: 6c8de98d3a3606b125989c79343d40840b7ea80f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef STASIS_GITHUB_H
#define STASIS_GITHUB_H
#include "core.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
|