6 lines
77 B
Go
6 lines
77 B
Go
|
|
package emitters
|
||
|
|
|
||
|
|
type Emitter interface {
|
||
|
|
Emit(path string, data []byte)
|
||
|
|
}
|