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

fix

parent f2bc3ae7
Pipeline #14796 passed with stage
in 36 seconds
'use strict';
const Controller = require('egg').Controller;
class WechatController extends Controller {
async oauthLogin() {
const { ctx } = this;
const result = {};
ctx.success(result);
}
}
module.exports = WechatController;
'use strict';
const Service = require('egg').Service;
class WechatService extends Service {
async oauthLogin() {
const { ctx } = this;
const result = {};
ctx.success(result);
}
}
module.exports = WechatService;
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