openreplay/backend/pkg/handlers/mobile/viewComponentDuration.go
Alexander 2bf9298836
Mobile renaming (protocol + backend) (#2078)
* 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
2024-04-12 09:30:24 +02:00

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
}