// Package main is the grpc gateway server of the application. package main import ( "github.com/go-dev-frame/sponge/pkg/app" "github.com/go-dev-frame/sponge/cmd/serverNameExample_grpcGwPbExample/initial" ) func main() { initial.InitApp() services := initial.CreateServices() closes := initial.Close(services) a := app.New(services, closes) a.Run() }