mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-01 22:30:42 -07:00
20 lines
356 B
C++
20 lines
356 B
C++
#pragma once
|
|
|
|
#include "api/module.h"
|
|
#include "api/request.h"
|
|
|
|
namespace api::modules {
|
|
|
|
class Info : public Module {
|
|
public:
|
|
Info();
|
|
|
|
private:
|
|
|
|
// function definitions
|
|
void avs(Request &req, Response &res);
|
|
void launcher(Request &req, Response &res);
|
|
void memory(Request &req, Response &res);
|
|
};
|
|
}
|