-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add coins command (not tested yet) * fix: make returned tokens/coins as list from bot * chore: fix failing build by updating the index * chore: fix missing sudo
- Loading branch information
Showing
4 changed files
with
75 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
#include <iostream> | ||
|
||
#include <curl/curl.h> | ||
#include <dpp/dpp.h> | ||
|
||
#include <cstdlib> | ||
#include <iostream> | ||
|
||
#include "nlohmann/json.hpp" | ||
|
||
#include <dpp/dpp.h> | ||
|
||
namespace gecko { | ||
void fetch(dpp::slashcommand_t event); | ||
} | ||
|
||
void fetch_tokens(dpp::slashcommand_t event); | ||
void fetch_price(dpp::slashcommand_t event); | ||
|
||
} // namespace gecko |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters