bottin-ag/webresponse/webresponse.go

18 lines
266 B
Go

package webresponse
import "codeberg.org/vlbeaudoin/voki/response"
type IndexGET struct {
response.ResponseWithError
}
type ScanPOST struct {
response.ResponseWithError
}
type DecompteGET struct {
response.ResponseWithError
Data struct {
Decompte int
}
}