mirror of
https://github.com/cool-team-official/cool-admin-midway.git
synced 2025-12-12 17:42:49 +00:00
25 lines
565 B
Plaintext
25 lines
565 B
Plaintext
{
|
|
"config": {
|
|
"prefix": "config",
|
|
"body": [
|
|
"import { Application } from 'egg';",
|
|
"import { ModuleConfig } from 'midwayjs-cool-core';",
|
|
"",
|
|
"/**",
|
|
" * 模块配置",
|
|
" */",
|
|
"export default (app: Application) => {",
|
|
" return {",
|
|
" // 模块名称",
|
|
" name: 'xxx',",
|
|
" // 模块描述",
|
|
" description: 'xxx',",
|
|
" // 中间件",
|
|
" middlewares: [],",
|
|
" } as ModuleConfig;",
|
|
"};"
|
|
],
|
|
"description": "cool-admin config代码片段"
|
|
}
|
|
}
|