2023-09-17 01:12:46 -04:00
|
|
|
package webresponse
|
|
|
|
|
2023-09-18 18:44:20 -04:00
|
|
|
import "codeberg.org/vlbeaudoin/voki/response"
|
2023-09-17 01:12:46 -04:00
|
|
|
|
|
|
|
type IndexGET struct {
|
2023-09-18 18:44:20 -04:00
|
|
|
response.ResponseWithError
|
2023-09-17 01:12:46 -04:00
|
|
|
}
|
2023-09-17 16:32:40 -04:00
|
|
|
|
|
|
|
type ScanPOST struct {
|
2023-09-18 18:44:20 -04:00
|
|
|
response.ResponseWithError
|
2023-09-17 16:32:40 -04:00
|
|
|
}
|
2023-09-19 18:25:12 -04:00
|
|
|
|
|
|
|
type DecompteGET struct {
|
|
|
|
response.ResponseWithError
|
|
|
|
Data struct {
|
|
|
|
Decompte int
|
|
|
|
}
|
|
|
|
}
|