mirror of
https://github.com/hairyhenderson/go-onerng.git
synced 2025-04-04 17:50:12 -05:00
32 lines
435 B
Go
32 lines
435 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"os/signal"
|
|
"time"
|
|
|
|
"github.com/hairyhenderson/go-onerng/cmd"
|
|
)
|
|
|
|
func main() {
|
|
ctx := context.Background()
|
|
|
|
ctx, cancel := context.WithDeadline(ctx, time.Now().Add(3*time.Second))
|
|
c := make(chan os.Signal, 1)
|
|
signal.Notify(c, os.Interrupt)
|
|
defer func() {
|
|
signal.Stop(c)
|
|
cancel()
|
|
}()
|
|
go func() {
|
|
select {
|
|
case <-c:
|
|
cancel()
|
|
case <-ctx.Done():
|
|
}
|
|
}()
|
|
|
|
cmd.Execute(ctx)
|
|
}
|