Remove sdk context dep

Signed-off-by: Pavel Korotkov <pavel@nspcc.ru>
This commit is contained in:
Pavel Korotkov 2021-03-25 11:27:59 +03:00 committed by Pavel Korotkov
parent f77c4e49dc
commit cdab794d62
2 changed files with 23 additions and 8 deletions

11
main.go
View file

@ -1,8 +1,8 @@
package main
import (
"github.com/nspcc-dev/cdn-sdk/grace"
"github.com/nspcc-dev/cdn-sdk/logger"
"github.com/nspcc-dev/neofs-http-gate/global"
"github.com/spf13/viper"
"go.uber.org/zap"
)
@ -41,15 +41,10 @@ func main() {
var (
v = settings()
l = newLogger(v)
g = grace.Context(l)
a = newApp(g,
WithLogger(l),
WithConfig(v))
g = global.Context()
a = newApp(g, WithLogger(l), WithConfig(v))
)
go a.Serve(g)
go a.Worker(g)
a.Wait()
}