11 lines
197 B
Go
11 lines
197 B
Go
|
package interfaces
|
||
|
|
||
|
import (
|
||
|
streamerproto "service/api/proto/streamer/proto"
|
||
|
)
|
||
|
|
||
|
type IsStreamerExtFillable interface {
|
||
|
GetMid() int64
|
||
|
CopyStreamerExt(streamerExt streamerproto.StreamerExtVO)
|
||
|
}
|