mirror of
https://github.com/spicetools/spicetools.git
synced 2026-04-24 06:46:46 -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);
|
|
};
|
|
}
|