feat(backend): added empty template for new mobile event

This commit is contained in:
Alexander Zavorotynskiy 2023-10-09 17:19:53 +02:00
parent 02f4b79cde
commit cdfa53ba6e

View file

@ -0,0 +1,22 @@
package ios
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
}