aboutsummaryrefslogtreecommitdiff
path: root/connector/irc/config.go
blob: 26d9a6371a39dbab44eec7f200854d74176e2f76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package irc

import (
	. "git.deuxfleurs.fr/Deuxfleurs/easybridge/connector"
)

func init() {
	Register("irc", ConfigSchema{
		&ConfigEntry{
			Name:        "nick",
			Description: "Nickname",
			Required:    true,
		},
		&ConfigEntry{
			Name:        "server",
			Description: "Server",
			Required:    true,
		},
		&ConfigEntry{
			Name:        "port",
			Description: "Port",
			IsNumeric:   true,
			Default:     "6667",
		},
		&ConfigEntry{
			Name:        "ssl",
			Description: "Use SSL",
			IsBoolean:   true,
			Default:     "false",
		},
	})
}