attach image

This commit is contained in:
2026-07-03 10:18:39 +09:00
parent 62cff6355b
commit c579ae6980
6 changed files with 197 additions and 14 deletions

View File

@@ -1,6 +1,12 @@
package output
type Image struct {
Data []byte
ContentType string
Filename string
}
type OutputInterface interface {
Write(string) error
Write(string, []Image) error
GetName() string
}