mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 05:57:03 +09:00
13 lines
194 B
Go
13 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"`
|
|
}
|