* feat(backend): renamed ios to mobile * feat(backend): added missing changes to iterator * feat(backend): added missing changes to ender * feat(backend): as usual auto deleted import in ch connector * feat(backend): updated ee/conditions func calls
22 lines
393 B
Go
22 lines
393 B
Go
package mobile
|
|
|
|
import (
|
|
. "openreplay/backend/pkg/messages"
|
|
)
|
|
|
|
type viewComponentDuration struct {
|
|
//
|
|
}
|
|
|
|
func NewViewComponentDurations() *viewComponentDuration {
|
|
compBuilder := &viewComponentDuration{}
|
|
return compBuilder
|
|
}
|
|
|
|
func (b *viewComponentDuration) Handle(message Message, timestamp uint64) Message {
|
|
return nil
|
|
}
|
|
|
|
func (b *viewComponentDuration) Build() Message {
|
|
return nil
|
|
}
|