123456789101112 |
- 'use strict';
- module.exports = app => {
- const { router, controller } = app;
- const profix = '/api/live/';
- const vision = 'v0';
- const index = 'system';
- const target = 'inviteCode';
- router.get('target', `${profix}${vision}/${index}/${target}`, controller[index][target].index);
- };
|