1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00
This commit is contained in:
Sergey Cherepanov 2023-04-02 14:33:07 +02:00 committed by Mikhail Iudin
parent f651813f0b
commit d7aaa95e57
No known key found for this signature in database
GPG key ID: FAAAA8BAABDFF1C0
2 changed files with 5 additions and 0 deletions

View file

@ -31,6 +31,10 @@ type Config struct {
func (c *Config) Init(a *app.App) (err error) { return }
func (c *Config) Name() string { return "config" }
func (c *Config) GetNodesConfId() string {
return "test"
}
func (c *Config) GetNodes() []nodeconf.NodeConfig {
return c.nodes
}