1package importer
2
3import "github.com/coyim/coyim/config"
4
5// TryImportAll will try to import from all known importers
6func TryImportAll() map[string][]*config.ApplicationConfig {
7	res := make(map[string][]*config.ApplicationConfig)
8
9	res["Adium"] = (&adiumImporter{}).TryImport()
10	res["Gajim"] = (&gajimImporter{}).TryImport()
11	res["Pidgin"] = (&pidginImporter{}).TryImport()
12	res["xmpp-client"] = (&xmppClientImporter{}).TryImport()
13
14	return res
15}
16