lg_frontend/services/apis.js

11 lines
189 B
JavaScript
Raw Permalink Normal View History

2024-02-19 16:02:13 +00:00
import { SupportLog, Request, Get, Post, Delete, Log } from './httpModule'
@SupportLog
@Request('/aaa')
class Apis {
@Log('test')
@Get('test')
test () {}
2024-02-18 03:20:00 +00:00
}
2024-02-19 16:02:13 +00:00
export default new Apis()