22 lines
565 B
TypeScript
22 lines
565 B
TypeScript
/*
|
|
* @Description: {{ByRuin}}
|
|
* @Version: 2.0
|
|
* @Author: Ruin 🍭
|
|
* @Date: 2022-03-03 17:03:51
|
|
* @LastEditors: 刘引
|
|
* @LastEditTime: 2022-03-07 09:58:23
|
|
*/
|
|
import { NgModule } from "@angular/core";
|
|
import { CommonModule } from "@angular/common";
|
|
import { HomeModule } from "./home/home.module";
|
|
import { UserModule } from "./user/user.module";
|
|
|
|
// 引入并且配置服务
|
|
@NgModule({
|
|
declarations: [],
|
|
imports: [CommonModule, HomeModule, UserModule],
|
|
providers: [],
|
|
exports: [CommonModule, HomeModule, UserModule],
|
|
})
|
|
export class PagesModule {}
|