UNPKG
@axolo/egg-cos-sts
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
Tencent cloud COS STS plugin for Egg.js.
github.com/axolo/egg-cos-sts
axolo/egg-cos-sts
@axolo/egg-cos-sts
/
app.js
10 lines
(6 loc)
•
184 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
const
CosSts
=
require
(
'./lib/cos-sts'
);
const
createCosSts
= options =>
new
CosSts
(options);
module
.
exports
=
app
=>
{ app.
addSingleton
(
'cosSts'
, createCosSts); };