mirror of
https://github.com/spicetools/spicetools.git
synced 2026-03-23 02:44:25 -05:00
18 lines
257 B
C++
18 lines
257 B
C++
#pragma once
|
|
|
|
#include "api/module.h"
|
|
#include "api/request.h"
|
|
|
|
namespace api::modules {
|
|
|
|
class Card : public Module {
|
|
public:
|
|
Card();
|
|
|
|
private:
|
|
|
|
// function definitions
|
|
void insert(Request &req, Response &res);
|
|
};
|
|
}
|