mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-17 08:09:50 +00:00
21 lines
328 B
C++
21 lines
328 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 {
|
|
void start(std::shared_ptr<safe::signal_t> shutdown_event);
|
|
}
|
|
|
|
#endif //SUNSHINE_CONFIGHTTP_H
|