Skip to content

Commit

Permalink
Added Higgs to Boson
Browse files Browse the repository at this point in the history
  • Loading branch information
Bhargav-Rao committed Mar 4, 2019
1 parent a479c14 commit 676cf73
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.sobotics</groupId>
<artifactId>boson</artifactId>
<version>0.0.2</version>
<version>0.0.3</version>
<name>Boson</name>
<description>A generic framework for creating SOBotics bots</description>

Expand Down
5 changes: 4 additions & 1 deletion src/main/java/org.sobotics.boson/Boson.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,13 @@ public static void main(String[] args) {
String password = propertyService.getProperty("password");
String apiKey = propertyService.getProperty("apikey");
String apiToken = propertyService.getProperty("apitoken");
String dashUrl = propertyService.getProperty("higgsurl");
String dashApi = propertyService.getProperty("higgsapi");
String dashKey = propertyService.getProperty("higgskey");
StackExchangeClient client = new StackExchangeClient(email, password);
Room room = client.joinRoom(ChatHost.STACK_OVERFLOW, 167908);

new BosonBot(room, client, apiKey, apiToken).start();
new BosonBot(room, client, apiKey, apiToken, dashUrl, dashApi, dashKey).start();

//new PostPrinterBot(room, "stackoverflow", 10000000).start();

Expand Down

0 comments on commit 676cf73

Please sign in to comment.