vieter/src/client/jobs.v

13 lines
242 B
Coq
Raw Normal View History

module client
import build { BuildConfig }
2022-12-12 22:58:43 +01:00
pub fn (c &Client) poll_jobs(arch string, max int) ![]BuildConfig {
data := c.send_request<[]BuildConfig>(.get, '/api/v1/jobs/poll', {
2022-12-12 22:58:43 +01:00
'arch': arch
'max': max.str()
})!
return data.data
}