7 строки
170 Б
Go
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
|
|
}
|