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

7 строки
170 Б
Go

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