UNPKG

ccxt-rest

Version:

Open Source Unified REST API of 100+ Crypto Exchange Sites

10 lines 252 B
'use strict'; module.exports = (sequelize, DataTypes) => { const JwtData = sequelize.define('JwtData', { secret: DataTypes.STRING }, {}); JwtData.associate = function(models) { // associations can be defined here }; return JwtData; };