summaryrefslogtreecommitdiffstats
path: root/einterfaces/webrtc.go
blob: 97850643fc5c19452f095f7bfdc3fb6a2222fd90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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
}