go-translator/business/transpiler/transpiler.go
2018-03-14 15:24:03 +01: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
}