summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go28
1 files changed, 28 insertions, 0 deletions
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..017772e
--- /dev/null
+++ b/main.go
@@ -0,0 +1,28 @@
+package main
+
+import (
+ "context"
+ "os"
+ "os/signal"
+
+ "gitrepo.ru/neonxp/rss2world/app"
+)
+
+func main() {
+ ctx, cancel := signal.NotifyContext(context.Background(), os.Interrupt, os.Kill)
+ defer cancel()
+
+ cfg, err := app.NewConfig()
+ if err != nil {
+ panic(err)
+ }
+
+ a, err := app.New(cfg)
+ if err != nil {
+ panic(err)
+ }
+
+ if err := a.Run(ctx); err != nil {
+ panic(err)
+ }
+}