mirror of
https://github.com/spicetools/spicetools.git
synced 2026-03-21 18:04:17 -05:00
21 lines
426 B
C++
21 lines
426 B
C++
#pragma once
|
|
|
|
#include "api/module.h"
|
|
#include "api/request.h"
|
|
|
|
namespace api::modules {
|
|
|
|
class Coin : public Module {
|
|
public:
|
|
Coin();
|
|
|
|
private:
|
|
|
|
// function definitions
|
|
void get(Request &req, Response &res);
|
|
void set(Request &req, Response &res);
|
|
void insert(Request &req, Response &res);
|
|
void blocker_get(Request &req, Response &res);
|
|
};
|
|
}
|