Files
tweetdistributor/output/output.go
2025-03-16 19:24:56 +09:00

7 lines
90 B
Go

package output
type OutputInterface interface {
Write(string) error
GetName() string
}