7 lines
88 B
Go
7 lines
88 B
Go
package output
|
|
|
|
type Output interface {
|
|
GeneratePayload() error
|
|
SendPayload() error
|
|
}
|