18 lines
266 B
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
|
|
}
|
|
}
|