go-translator/business/worker/mapping.go
2018-03-14 15:24:03 +01:00

7 строки
175 Б
Go

package worker
// Mapping specifies the business logic to apply transformation to a specific identifier.
type Mapping interface {
Apply(ident string) string
Read() error
}