13 lines
182 B
Go
13 lines
182 B
Go
package output
|
|
|
|
type Image struct {
|
|
Data []byte
|
|
ContentType string
|
|
Filename string
|
|
}
|
|
|
|
type OutputInterface interface {
|
|
Write(string, []Image) error
|
|
GetName() string
|
|
}
|