63275f7876
Signed-off-by: Denis Kirillov <denis@nspcc.ru>
20 lines
252 B
Go
20 lines
252 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"os/signal"
|
|
"syscall"
|
|
)
|
|
|
|
func main() {
|
|
g, _ := signal.NotifyContext(context.Background(), syscall.SIGINT, syscall.SIGTERM)
|
|
|
|
v := newSettings()
|
|
l := newLogger(v)
|
|
|
|
a := newApp(g, l, v)
|
|
|
|
go a.Serve(g)
|
|
|
|
a.Wait()
|
|
}
|