Reorganized structure, seperating implementations from core logic
This commit is contained in:
13
pkg/data/envelope.go
Normal file
13
pkg/data/envelope.go
Normal file
@@ -0,0 +1,13 @@
|
||||
// Package data ...
|
||||
package data
|
||||
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
type Envelope struct {
|
||||
SendTime time.Time
|
||||
|
||||
Descriptor Descriptor
|
||||
Payload any
|
||||
}
|
||||
Reference in New Issue
Block a user