Move s3-gate files to cmd/gate

This commit is contained in:
Evgeniy Kulikov 2020-07-09 12:26:30 +03:00
parent 3c7682402e
commit 212e1a50b7
8 changed files with 0 additions and 0 deletions

15
cmd/gate/main.go Normal file
View file

@ -0,0 +1,15 @@
package main
func main() {
var (
v = newSettings()
l = newLogger(v)
a = newApp(l, v)
g = newGracefulContext(l)
)
go a.Server(g)
go a.Worker(g)
a.Wait(g)
}