mirror of
https://github.com/thinkonmay/sunshine-sdk.git
synced 2026-01-27 19:36:28 +00:00
20 lines
332 B
C++
20 lines
332 B
C++
// Created by loki on 6/3/19.
|
|
|
|
#ifndef SUNSHINE_CONFIGHTTP_H
|
|
#define SUNSHINE_CONFIGHTTP_H
|
|
|
|
#include <functional>
|
|
#include <string>
|
|
|
|
#include "thread_safe.h"
|
|
|
|
#define WEB_DIR SUNSHINE_ASSETS_DIR "/web/"
|
|
|
|
|
|
namespace confighttp {
|
|
constexpr auto PORT_HTTPS = 1;
|
|
void start();
|
|
} // namespace confighttp
|
|
|
|
#endif // SUNSHINE_CONFIGHTTP_H
|