mirror of
https://github.com/go-kratos/kratos.git
synced 2025-01-28 03:57:02 +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)
|