6 строки
132 Б
Go
6 строки
132 Б
Go
package worker
|
|
|
|
// Source stores the code which will be transformed into another format.
|
|
type Source interface {
|
|
String() string
|
|
}
|