go fmt
This commit is contained in:
parent
0f6be9663e
commit
ec9bc9b752
10 changed files with 95 additions and 96 deletions
|
@ -1,16 +1,16 @@
|
|||
package mattermost
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
_ "os"
|
||||
"strings"
|
||||
"time"
|
||||
"io/ioutil"
|
||||
"encoding/json"
|
||||
|
||||
"github.com/mattermost/mattermost-server/model"
|
||||
"github.com/42wim/matterbridge/matterclient"
|
||||
"github.com/mattermost/mattermost-server/model"
|
||||
log "github.com/sirupsen/logrus"
|
||||
|
||||
. "git.deuxfleurs.fr/Deuxfleurs/easybridge/connector"
|
||||
|
@ -34,7 +34,6 @@ type Mattermost struct {
|
|||
userdisplaynamemap map[UserID]string // map username to last displayname
|
||||
}
|
||||
|
||||
|
||||
func (mm *Mattermost) SetHandler(h Handler) {
|
||||
mm.handler = h
|
||||
}
|
||||
|
|
|
@ -129,6 +129,7 @@ func (m *BlobMediaObject) URL() string {
|
|||
type nullCloseReader struct {
|
||||
io.Reader
|
||||
}
|
||||
|
||||
func (ncr nullCloseReader) Close() error {
|
||||
return nil
|
||||
}
|
||||
|
|
|
@ -3,12 +3,12 @@ package xmpp
|
|||
import (
|
||||
"time"
|
||||
//"os"
|
||||
"strings"
|
||||
"fmt"
|
||||
"crypto/tls"
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
log "github.com/sirupsen/logrus"
|
||||
gxmpp "github.com/mattn/go-xmpp"
|
||||
log "github.com/sirupsen/logrus"
|
||||
|
||||
. "git.deuxfleurs.fr/Deuxfleurs/easybridge/connector"
|
||||
)
|
||||
|
@ -346,4 +346,3 @@ func (xm *XMPP) Close() {
|
|||
xm.conn = nil
|
||||
xm.connectorLoopNum += 1
|
||||
}
|
||||
|
||||
|
|
2
main.go
2
main.go
|
@ -18,8 +18,8 @@ import (
|
|||
"git.deuxfleurs.fr/Deuxfleurs/easybridge/appservice"
|
||||
"git.deuxfleurs.fr/Deuxfleurs/easybridge/connector"
|
||||
"git.deuxfleurs.fr/Deuxfleurs/easybridge/connector/irc"
|
||||
"git.deuxfleurs.fr/Deuxfleurs/easybridge/connector/xmpp"
|
||||
"git.deuxfleurs.fr/Deuxfleurs/easybridge/connector/mattermost"
|
||||
"git.deuxfleurs.fr/Deuxfleurs/easybridge/connector/xmpp"
|
||||
"git.deuxfleurs.fr/Deuxfleurs/easybridge/mxlib"
|
||||
)
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
package mxlib
|
||||
|
||||
import (
|
||||
"strings"
|
||||
"bytes"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
log "github.com/sirupsen/logrus"
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
package mxlib
|
||||
|
||||
import (
|
||||
"io"
|
||||
"fmt"
|
||||
"net/url"
|
||||
"io"
|
||||
"net/http"
|
||||
"net/url"
|
||||
|
||||
"git.deuxfleurs.fr/Deuxfleurs/easybridge/connector"
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue