35 lines
612 B
TOML
35 lines
612 B
TOML
#=-- example irc node --=#
|
|
[nodes.a]
|
|
platform = "irc"
|
|
|
|
[nodes.a.config]
|
|
server = "example.com"
|
|
port = 6667
|
|
nick = "example"
|
|
alt_nicks = []
|
|
tls = true
|
|
|
|
[nodes.a.links]
|
|
"#example" = "example-link"
|
|
|
|
#=-- example matrix node --=#
|
|
[nodes.b]
|
|
platform = "matrix"
|
|
|
|
[nodes.b.config]
|
|
user = "@example:example.com"
|
|
password = "hunter2"
|
|
|
|
[nodes.b.links]
|
|
"!abcdefghijklmnopqr:example.com" = "example-link"
|
|
|
|
#=-- example discord node --=#
|
|
[nodes.c]
|
|
platform = "discord"
|
|
|
|
[nodes.c.config]
|
|
token = "MTAyNTYzNDA0NDkxNjAxMTA4OQ.G7CojH.TMB1DrSuncWUOU7M4ELDyMpmEdCaziZTDhoWt4"
|
|
|
|
[nodes.c.links]
|
|
"123456789012345678" = "example-link"
|