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

6 строки
175 Б
Go

package transpiler
// Transpiler specifies the behaviour of taking Go source code and transforming it into another language.
type Transpiler interface {
Transpile() error
}