20 lines
242 B
TypeScript
20 lines
242 B
TypeScript
// node native
|
|
import * as path from 'path';
|
|
|
|
export {
|
|
path
|
|
}
|
|
|
|
// pushrocks scope
|
|
import * as samrtfile from '@pushrocks/smartfile';
|
|
|
|
export {
|
|
samrtfile as smartfile
|
|
}
|
|
|
|
// thirdparty scope
|
|
import s3rver from 's3rver';
|
|
|
|
export {
|
|
s3rver
|
|
} |