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

6 строки
156 Б
Go

package worker
// Worker specifies the api logic of transforming a source code format into another target format.
type Worker interface {
Start() error
}