6 строки
118 Б
Go
6 строки
118 Б
Go
package worker
|
|
|
|
// Target stores the result of the transformation process.
|
|
type Target interface {
|
|
String() string
|
|
}
|