This commit is contained in:
2022-06-21 07:14:46 -04:00
parent 01cf6d6fbe
commit 7ae0777c13
7 changed files with 92 additions and 5 deletions
+31
View File
@@ -0,0 +1,31 @@
// Twillo management toosl
#include "clog.h"
#include "cgi.h"
#include "input.h"
#include "wrenchboard_api.h"
#include "cards.h"
#include "email.h"
#include "safestring.h"
#include <string>
#include "pgsql.h"
#include "pgsql_wrapper.h"
#include <curl/curl.h>
#include "account.h"
#include "twilo.h"
long dummyCards(CVars in, CVars &out)
{
long ret = 0;
logfmt( logINFO, "dummyReco()09-09-********~************");
// REQ_STRING( in, "batch_name", 1, 50, "(.*)");
// REQ_LONG( in, "customer_id", 1, -1 );
CVars cust;
return ret;
}
+31
View File
@@ -0,0 +1,31 @@
// Twillo management toosl
#include "clog.h"
#include "cgi.h"
#include "input.h"
#include "wrenchboard_api.h"
#include "reco_engine.h"
#include "email.h"
#include "safestring.h"
#include <string>
#include "pgsql.h"
#include "pgsql_wrapper.h"
#include <curl/curl.h>
#include "account.h"
#include "twilo.h"
long dummyReco(CVars in, CVars &out)
{
long ret = 0;
logfmt( logINFO, "dummyReco()09-09-********~************");
// REQ_STRING( in, "batch_name", 1, 50, "(.*)");
// REQ_LONG( in, "customer_id", 1, -1 );
CVars cust;
return ret;
}