UNPKG
egg-plugin-s3
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.0
AWS S3 plugin for Egg
github.com/fuxingZhang/egg-s3
fuxingZhang/egg-s3
egg-plugin-s3
/
app.js
14 lines
(10 loc)
•
163 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict'
;
const
s3 =
require
(
'./lib/s3'
);
module
.
exports
=
class
{
constructor
(
app
) {
this
.
app
= app; }
configDidLoad
(
) {
s3
(
this
.
app
); } }