Skip to content

Commit

Permalink
Update auth.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
autumnlikescode authored May 20, 2024
1 parent afa78a0 commit 5c9e1cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions auth.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ namespace KeyAuth {
class api {
public:

std::string name, ownerid, secret, version, url;
std::string name, ownerid, secret, version, url, path;

api(std::string name, std::string ownerid, std::string secret, std::string version, std::string url) : name(name), ownerid(ownerid), secret(secret), version(version), url(url) {}
api(std::string name, std::string ownerid, std::string secret, std::string version, std::string url, std::string path) : name(name), ownerid(ownerid), secret(secret), version(version), url(url), path(path) {}

void ban(std::string reason = "");
void init();
Expand Down

0 comments on commit 5c9e1cb

Please sign in to comment.