any-sync/net/rpc/drpcconfig.go
2023-06-08 12:35:29 +02:00

14 lines
194 B
Go

package rpc
type ConfigGetter interface {
GetDrpc() Config
}
type Config struct {
Stream StreamConfig `yaml:"stream"`
}
type StreamConfig struct {
MaxMsgSizeMb int `yaml:"maxMsgSizeMb"`
}