go-translator/api/worker/mapping.go
2018-04-03 08:45:48 +02:00

6 строки
156 Б
Go

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