mirror of
https://github.com/cool-team-official/cool-admin-midway.git
synced 2024-11-02 06:33:42 +08:00
18 lines
386 B
TypeScript
18 lines
386 B
TypeScript
|
import { Configuration } from '@midwayjs/decorator';
|
||
|
import * as DefaultConfig from './config/config.default';
|
||
|
import { IMidwayContainer } from '@midwayjs/core';
|
||
|
|
||
|
@Configuration({
|
||
|
namespace: 'cool:sms',
|
||
|
importConfigs: [
|
||
|
{
|
||
|
default: DefaultConfig,
|
||
|
},
|
||
|
],
|
||
|
})
|
||
|
export class CoolPayConfiguration {
|
||
|
async onReady(container: IMidwayContainer) {
|
||
|
// TODO something
|
||
|
}
|
||
|
}
|