1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-10 18:10:54 +09:00

configuration from config

This commit is contained in:
Sergey Cherepanov 2022-08-24 00:40:14 +03:00 committed by Mikhail Iudin
parent 8a058b8b23
commit fe2c8bdade
No known key found for this signature in database
GPG key ID: FAAAA8BAABDFF1C0
4 changed files with 70 additions and 23 deletions

View file

@ -9,6 +9,7 @@ import (
"github.com/anytypeio/go-anytype-infrastructure-experiments/config"
"github.com/anytypeio/go-anytype-infrastructure-experiments/service/account"
"github.com/anytypeio/go-anytype-infrastructure-experiments/service/api"
"github.com/anytypeio/go-anytype-infrastructure-experiments/service/configuration"
"github.com/anytypeio/go-anytype-infrastructure-experiments/service/net/dialer"
"github.com/anytypeio/go-anytype-infrastructure-experiments/service/net/pool"
"github.com/anytypeio/go-anytype-infrastructure-experiments/service/net/rpc/server"
@ -97,7 +98,7 @@ func Bootstrap(a *app.App) {
Register(server.New()).
Register(dialer.New()).
Register(pool.NewPool()).
//Register(&example.Example{})
Register(configuration.New()).
Register(document.New()).
Register(message.New()).
Register(requesthandler.New()).