Update TwitterTechSupportGoreBot.java

added version logging
This commit is contained in:
Louis Vallat 2019-04-27 00:44:00 +02:00
parent b3af1f7982
commit 0afc9e05ba

View File

@ -31,6 +31,11 @@ import java.sql.SQLException;
*/ */
public class TwitterTechSupportGoreBot { public class TwitterTechSupportGoreBot {
/**
* Version of the application.
*/
private static final String VERSION = "0.9.1";
/** /**
* Launch the Hypervisor. * Launch the Hypervisor.
* *
@ -55,6 +60,7 @@ public class TwitterTechSupportGoreBot {
NoSuchProperty, NoSuchProperty,
NoSuchOrder { NoSuchOrder {
System.out.println("[*] App version " + VERSION);
Hypervisor master = Hypervisor.getSingleton(); Hypervisor master = Hypervisor.getSingleton();
master.addSocialMedia(new TwitterBot()); master.addSocialMedia(new TwitterBot());
master.run(); master.run();