6 lines
82 B
Go
6 lines
82 B
Go
package cmd
|
|
|
|
type OutputProvider interface {
|
|
Convert(item any) (string, error)
|
|
}
|