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