mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-18 02:09:49 +00:00
7 lines
293 B
C
7 lines
293 B
C
|
namespace http{
|
||
|
void init(std::shared_ptr<safe::signal_t> shutdown_event);
|
||
|
int create_creds(const std::string &pkey, const std::string &cert);
|
||
|
std::string read_file(const char *path);
|
||
|
int write_file(const char *path, const std::string_view &contents);
|
||
|
extern std::string unique_id;
|
||
|
}
|