go-xmpp/xmpp/options.go
2016-01-06 16:51:12 +01:00

13 lines
260 B
Go

package xmpp
import "os"
type Options struct {
Address string
Jid string
parsedJid *Jid // For easier manipulation
Password string
PacketLogger *os.File // Used for debugging
Lang string // TODO: should default to 'en'
}