mirror of
https://github.com/go-kratos/kratos.git
synced 2025-03-19 21:18:07 +02:00
9 lines
150 B
Go
9 lines
150 B
Go
package server
|
|
|
|
import (
|
|
"github.com/google/wire"
|
|
)
|
|
|
|
// ProviderSet is server providers.
|
|
var ProviderSet = wire.NewSet(NewHTTPServer, NewGRPCServer)
|