Skip to content

Commit ea88c9a

Browse files
committed
Merge.
2 parents 4939155 + 3120eb7 commit ea88c9a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

functions/slack/src/main/java/functions/SlackSlashCommand.java

+10
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ public SlackSlashCommand() throws IOException, GeneralSecurityException {
5555
SlackSlashCommand(SlackSignature.Verifier verifier) throws IOException, GeneralSecurityException {
5656
this(verifier, API_KEY);
5757
}
58+
<<<<<<< HEAD
5859

5960
SlackSlashCommand(SlackSignature.Verifier verifier, String apiKey)
6061
throws IOException, GeneralSecurityException {
@@ -73,6 +74,15 @@ private static String getenv(String name) {
7374
value = "MISSING";
7475
}
7576
return value;
77+
=======
78+
79+
SlackSlashCommand(SlackSignature.Verifier verifier, String apiKey)
80+
throws IOException, GeneralSecurityException {
81+
this.verifier = verifier;
82+
this.apiKey = apiKey;
83+
this.kgClient = new Kgsearch.Builder(
84+
GoogleNetHttpTransport.newTrustedTransport(), new JacksonFactory(), null).build();
85+
>>>>>>> 3120eb78f6b9617de12177871ecfe793d9d6215a
7686
}
7787
// [END functions_slack_setup]
7888

0 commit comments

Comments
 (0)