10 lines
126 B
Go
10 lines
126 B
Go
package registrynew
|
|
|
|
// Conversion
|
|
type Conversion interface {
|
|
InRepr() string
|
|
OutRepr() string
|
|
|
|
Run(Expr) (Expr, error)
|
|
}
|