@nest-mods/youzan
v3.0.0
Published
Youzan API client wrapped with bull for nest.js
Downloads
3
Readme
youzan
Youzan API client wrapped with bull for nest.js
install via npm npm i @nest-mods/youzan @nest-mods/log ioredis lodash bull
2.x
target at nestjs 6.x
@Module({
imports: [
YouzanModule.forRootAsync({
useFactory: () => {
return {
apiConfigs: {
client_id: process.env.TEST_YOUZAN_CLIENT_ID,
client_secret: process.env.TEST_YOUZAN_CLIENT_SECRET,
kdt_id: process.env.TEST_YOUZAN_KDT_ID,
grant_type: 'silent',
},
redis: {},
};
},
}),
],
})
export class DemoApp {}