Also fixed the module URLs. git-svn-id: file:///srv/svn/repo/mai/trunk@9 e410bdd4-646f-c54f-a7ce-fffcc4f439ae
13 lines
200 B
Go
13 lines
200 B
Go
package main
|
|
|
|
import (
|
|
"codeberg.org/SimpleWeb/SimplyTranslate/engines"
|
|
)
|
|
|
|
// TODO: port web frontend to Go.
|
|
|
|
func main() {
|
|
engine := &engines.GoogleTranslateEngine{}
|
|
print(engine.DisplayName())
|
|
}
|