feat(backend): added empty template for new mobile event
This commit is contained in:
parent
02f4b79cde
commit
cdfa53ba6e
1 changed files with 22 additions and 0 deletions
22
backend/pkg/handlers/ios/viewComponentDuration.go
Normal file
22
backend/pkg/handlers/ios/viewComponentDuration.go
Normal 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
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue