Keybase proof
I hereby claim:
- I am teghnet on github.
- I am teghnet (https://keybase.io/teghnet) on keybase.
- I have a public key ASANxWSZXtSxfHG2fNQoKyjGZTn3UswcyWGV4OtEbTo_ggo
To claim this, I am signing this object:
FROM bash | |
COPY test*.sh ./ | |
RUN bash test_scenario.sh |
package main | |
import ( | |
"log" | |
"sync" | |
"time" | |
) | |
type SemaphoredWaitGroup struct { | |
sem chan bool |
I hereby claim:
To claim this, I am signing this object:
// This is an example for: | |
// https://www.tegh.net/2021/12/12/homemade-cli-tools/ | |
package main | |
import ( | |
"errors" | |
"fmt" | |
"io" | |
"log" | |
"os" |
func must[t any](c t, err error) t { | |
if err != nil { | |
log.Fatalln(err) | |
} | |
return c | |
} |