blob: f99a03421b99505ccc7832ea2969e5d491672292 [file] [log] [blame]
import mockjs from 'mockjs';
const getTags = (_, res) => {
return res.json({
data: mockjs.mock({
'list|100': [
{
name: '@city',
'value|1-100': 150,
'type|0-2': 1,
},
],
}),
});
};
export default {
'GET /api/tags': getTags,
};