24 lines
363 B
TypeScript
24 lines
363 B
TypeScript
// node native
|
|
import * as path from 'path';
|
|
|
|
export {
|
|
path
|
|
}
|
|
|
|
// pushrocks scope
|
|
import * as smartbucket from '@pushrocks/smartbucket';
|
|
import * as smartfile from '@pushrocks/smartfile';
|
|
import * as smartpath from '@pushrocks/smartpath';
|
|
|
|
export {
|
|
smartbucket,
|
|
smartfile,
|
|
smartpath
|
|
}
|
|
|
|
// thirdparty scope
|
|
import s3rver from 's3rver';
|
|
|
|
export {
|
|
s3rver
|
|
} |