forked from TrueCloudLab/frostfs-http-gw
939f5f0c65
Signed-off-by: Denis Kirillov <denis@nspcc.ru>
17 lines
372 B
Go
17 lines
372 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"os/signal"
|
|
"syscall"
|
|
)
|
|
|
|
func main() {
|
|
globalContext, _ := signal.NotifyContext(context.Background(), syscall.SIGINT, syscall.SIGTERM)
|
|
v := settings()
|
|
logger, atomicLevel := newLogger(v)
|
|
|
|
application := newApp(globalContext, WithLogger(logger, atomicLevel), WithConfig(v))
|
|
go application.Serve(globalContext)
|
|
application.Wait()
|
|
}
|