UNPKG

@axolo/egg-cos

Version:

Tencent Cloud COS plugin for Egg.js.

15 lines (11 loc) 249 B
'use strict'; const Cos = require('./lib/cos'); const createCos = options => { const { COS } = options; const cos = new Cos({ ...options }); cos.COS = COS; return cos; }; module.exports = app => { app.addSingleton('cos', createCos); };