eprezto-yappy
Version:
Yappy Implementation as a NodeJS sdk
22 lines (16 loc) • 325 B
JavaScript
/*
* EPREZTO YAPPY NodeJS SDK
* https://eprezto.com
*
* Copyright (c) 2021 Eprezto Tech
*
* For informations email us at jose@eprezto.com
*
*/
var path = require('path');
// Module
var Yappy = {};
// REST client
Yappy.Client = require(path.join(__dirname,'src','client'))
module.exports = Yappy;