remove unused parameter

This commit is contained in:
Agioi Theodoroi 2020-04-17 20:00:40 -04:00 committed by Kslr
parent 97074c5bf4
commit 37a55653e9
No known key found for this signature in database
GPG Key ID: 0AF5F66FA1E887CE
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ func main() {
{
osSignals := make(chan os.Signal, 1)
signal.Notify(osSignals, os.Interrupt, os.Kill, syscall.SIGTERM)
signal.Notify(osSignals, os.Interrupt, syscall.SIGTERM)
<-osSignals
}
}