package main import ( appConfig "github.com/xmpploadtesting/config" xmppService "github.com/xmpploadtesting/services" ) func main() { // LOAD APPLICATION CONFIGURATION appConfig.Load() xmppService.Init() xmppServiceInstance := xmppService.Instance() xmppService.SendOnlinePresenceStanza(xmppServiceInstance.XMPPClients[0].Client, xmppServiceInstance.XMPPClients[0].Config.Jid) }