summaryrefslogtreecommitdiff
path: root/src/irc/client.cpp
blob: ed9552e1fa5c54d4105bdb7ccc6c7b29f6906b28 (plain)
1
2
3
4
5
6
7
8
9
10
#include "client.hpp"

#include <string>

using namespace RedpilledBot::IRC;

Client::Client(std::string username, std::string password) {
  this->username = username;
  this->password = password;
}