Attempt at writing renew_queue function; seems to just stop in the
Some checks failed
ci/woodpecker/push/arch unknown status
ci/woodpecker/push/docker unknown status
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/test Pipeline was successful

middle
This commit is contained in:
Jef Roosens 2022-04-13 16:12:22 +02:00
parent ff57d73998
commit f7e1aba30b
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
10 changed files with 89 additions and 30 deletions

2
src/env/env.v vendored
View file

@ -58,7 +58,7 @@ pub fn load<T>(path string) ?T {
if s !is toml.Null {
$if field.typ is string {
res.$(field.name) = s.string()
}$else $if field.typ is int {
} $else $if field.typ is int {
res.$(field.name) = s.int()
}
}