23 lines
298 B
Go
23 lines
298 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
"os"
|
||
|
"os/signal"
|
||
|
|
||
|
"code.icb4dc0.de/prskr/pg_v_man/cmd"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
ctx, stop := signal.NotifyContext(context.Background(), os.Interrupt, os.Kill)
|
||
|
|
||
|
err := cmd.RunApp(ctx)
|
||
|
stop()
|
||
|
|
||
|
if err != nil {
|
||
|
fmt.Printf("Error: %v\n", err)
|
||
|
os.Exit(1)
|
||
|
}
|
||
|
}
|