- Enabled the translation module
This commit is contained in:
Tristan B. Velloza Kildaire 2023-06-18 12:47:32 +02:00
parent a49138f10d
commit e0874318dd
1 changed files with 3 additions and 1 deletions

View File

@ -28,11 +28,13 @@ public class Bot : Client
import botty.modules.eskom : EskomCalendarAPI;
import botty.modules.ping : Ping;
import botty.modules.rot13 : Rot13;
import botty.modules.translate : Translate;
modules ~= [
new DeavmiComedy(this),
new EskomCalendarAPI(this),
new Ping(this),
new Rot13(this)
new Rot13(this),
new Translate(this)
];
}