Files
tweetdistributor/output/output.go
2026-07-03 10:18:39 +09:00

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
}