2023-06-22 17:20:04 +02:00
|
|
|
import type { HttpContextContract } from '@ioc:Adonis/Core/HttpContext';
|
2023-03-03 16:54:28 +01:00
|
|
|
|
|
|
|
export default class HomeController {
|
2023-06-22 17:20:04 +02:00
|
|
|
public async index({}: HttpContextContract) {}
|
2023-03-03 16:54:28 +01:00
|
|
|
|
2023-06-22 17:20:04 +02:00
|
|
|
public async create({}: HttpContextContract) {}
|
2023-03-03 16:54:28 +01:00
|
|
|
|
2023-06-22 17:20:04 +02:00
|
|
|
public async store({}: HttpContextContract) {}
|
2023-03-03 16:54:28 +01:00
|
|
|
|
2023-06-22 17:20:04 +02:00
|
|
|
public async show({}: HttpContextContract) {}
|
2023-03-03 16:54:28 +01:00
|
|
|
|
2023-06-22 17:20:04 +02:00
|
|
|
public async edit({}: HttpContextContract) {}
|
2023-03-03 16:54:28 +01:00
|
|
|
|
2023-06-22 17:20:04 +02:00
|
|
|
public async update({}: HttpContextContract) {}
|
2023-03-03 16:54:28 +01:00
|
|
|
|
2023-06-22 17:20:04 +02:00
|
|
|
public async destroy({}: HttpContextContract) {}
|
2023-03-03 16:54:28 +01:00
|
|
|
}
|