bottin-ag/webresponse/webresponse.go

19 lines
266 B
Go
Raw Permalink Normal View History

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