nest-tips
# 利用 nest 创建模块
# 在项目的根目录运行
nest g resource today-in-history --no-spec
# today-in-history 模块名称
# --no-spec 不要测试模块
1
2
3
4
5
6
2
3
4
5
6
上次更新: 2023/04/05, 09:41:10
# 在项目的根目录运行
nest g resource today-in-history --no-spec
# today-in-history 模块名称
# --no-spec 不要测试模块