8 lines
92 B
Go
8 lines
92 B
Go
package transport
|
|
|
|
type Emitter struct{}
|
|
|
|
func NewEmitter() *Emitter {
|
|
return &Emitter{}
|
|
}
|