File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import (
1111 "github.com/anyproto/any-sync/net/rpc"
1212 "github.com/anyproto/any-sync/net/rpc/debugserver"
1313 "github.com/anyproto/any-sync/net/rpc/limiter"
14+ "github.com/anyproto/any-sync/net/secureservice"
1415 "github.com/anyproto/any-sync/net/streampool"
1516 "github.com/anyproto/any-sync/net/transport/quic"
1617 "github.com/anyproto/any-sync/net/transport/yamux"
@@ -55,6 +56,7 @@ type Config struct {
5556 Quic quic.Config `yaml:"quic"`
5657 S3Store archivestore.Config `yaml:"s3Store"`
5758 Archive archive.Config `yaml:"archive"`
59+ Secure secureservice.Config `yaml:"secure"`
5860}
5961
6062func (c Config ) Init (a * app.App ) (err error ) {
@@ -136,3 +138,7 @@ func (c Config) GetS3Store() archivestore.Config {
136138func (c Config ) GetArchive () archive.Config {
137139 return c .Archive
138140}
141+
142+ func (c Config ) GetSecureService () secureservice.Config {
143+ return c .Secure
144+ }
You can’t perform that action at this time.
0 commit comments