blob: f9b47a33b1a56f68cacadb9f7bdbc5e9fbf6883c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
//! @file github.h
#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
|