github.com/optim-corp/cios-golang-sdk@v0.5.1/sdk/mock/videostreaming.go (about)

     1  package ciossdmock
     2  
     3  import (
     4  	_nethttp "net/http"
     5  
     6  	"github.com/optim-corp/cios-golang-sdk/cios"
     7  	ciosctx "github.com/optim-corp/cios-golang-sdk/ctx"
     8  )
     9  
    10  type NoImplementVideoStreaming struct{}
    11  
    12  func (NoImplementVideoStreaming) SetToken(s2 string) {
    13  	panic("implement me")
    14  }
    15  
    16  func (NoImplementVideoStreaming) GetVideoInfos(ctx ciosctx.RequestCtx, request cios.ApiGetVideoStreamsListRequest) ([]cios.Video, *_nethttp.Response, error) {
    17  	panic("implement me")
    18  }
    19  
    20  func (NoImplementVideoStreaming) GetVideoInfo(ctx ciosctx.RequestCtx, s string) (cios.Video, *_nethttp.Response, error) {
    21  	panic("implement me")
    22  }
    23  
    24  func (NoImplementVideoStreaming) UpdateVideoInfo(ctx ciosctx.RequestCtx, s string, s2 string, s3 string) (cios.Video, *_nethttp.Response, error) {
    25  	panic("implement me")
    26  }
    27  
    28  func (NoImplementVideoStreaming) GetThumbnail(ctx ciosctx.RequestCtx, s string) ([]byte, *_nethttp.Response, error) {
    29  	panic("implement me")
    30  }
    31  
    32  func (NoImplementVideoStreaming) Play(ctx ciosctx.RequestCtx, s string) (cios.Room, *_nethttp.Response, error) {
    33  	panic("implement me")
    34  }
    35  
    36  func (NoImplementVideoStreaming) Stop(ctx ciosctx.RequestCtx, s string) (*_nethttp.Response, error) {
    37  	panic("implement me")
    38  }
    39  
    40  func (NoImplementVideoStreaming) setToken(s string) {
    41  	panic("implement me")
    42  }