* PLT-4550 move webrtc to TE

* remove webrtc from makefile enterprise tests
Этот коммит содержится в:
enahum
2016-11-04 13:05:32 -03:00
коммит произвёл Harrison Healey
родитель 6289c72686
Коммит 772b57386f
14 изменённых файлов: 181 добавлений и 107 удалений

Просмотреть файл

@@ -1,23 +0,0 @@
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package einterfaces
import (
"github.com/mattermost/platform/model"
)
type WebrtcInterface interface {
Token(sessionId string) (map[string]string, *model.AppError)
RevokeToken(sessionId string)
}
var theWebrtcInterface WebrtcInterface
func RegisterWebrtcInterface(newInterface WebrtcInterface) {
theWebrtcInterface = newInterface
}
func GetWebrtcInterface() WebrtcInterface {
return theWebrtcInterface
}