tethys.backend/app/Controllers/Http/Admin/HomeController.ts

18 lines
406 B
TypeScript
Raw Normal View History

2024-03-14 19:25:27 +00:00
import type { HttpContext } from '@adonisjs/core/http';
2023-03-03 15:54:28 +00:00
export default class HomeController {
2024-03-14 19:25:27 +00:00
public async index({}: HttpContext) {}
2023-03-03 15:54:28 +00:00
2024-03-14 19:25:27 +00:00
public async create({}: HttpContext) {}
2023-03-03 15:54:28 +00:00
2024-03-14 19:25:27 +00:00
public async store({}: HttpContext) {}
2023-03-03 15:54:28 +00:00
2024-03-14 19:25:27 +00:00
public async show({}: HttpContext) {}
2023-03-03 15:54:28 +00:00
2024-03-14 19:25:27 +00:00
public async edit({}: HttpContext) {}
2023-03-03 15:54:28 +00:00
2024-03-14 19:25:27 +00:00
public async update({}: HttpContext) {}
2023-03-03 15:54:28 +00:00
2024-03-14 19:25:27 +00:00
public async destroy({}: HttpContext) {}
2023-03-03 15:54:28 +00:00
}