tethys.backend/app/Controllers/Http/Admin/HomeController.ts
Arno Kaimbacher cb51a4136f
Some checks failed
CI Pipeline / japa-tests (push) Failing after 1m15s
- update to AdonisJS 6
2024-03-14 20:25:27 +01:00

18 lines
406 B
TypeScript

import type { HttpContext } from '@adonisjs/core/http';
export default class HomeController {
public async index({}: HttpContext) {}
public async create({}: HttpContext) {}
public async store({}: HttpContext) {}
public async show({}: HttpContext) {}
public async edit({}: HttpContext) {}
public async update({}: HttpContext) {}
public async destroy({}: HttpContext) {}
}