| 1 | import { GetMapping, renderHtml } from '@/common'; |
| 2 | |
| 3 | export default class ViewController { |
| 4 | @GetMapping(/\/*/) |
| 5 | @renderHtml() |
| 6 | async renderIndex(): Promise<string> { |
| 7 | return 'index'; |
| 8 | } |
| 9 | } |
nothing calls this directly
no test coverage detected