Commit b0f25b95 authored by 李尚科's avatar 李尚科

remove test

parent e9c714ff
Pipeline #16594 passed with stage
in 6 seconds
'use strict';
const Controller = require('egg').Controller;
class TestController extends Controller {
async test() {
const { ctx } = this;
ctx.success(ctx.cookies);
}
async test2(){
const { ctx } = this;
ctx.success(ctx.cookies);
}
}
module.exports = TestController;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment