18 lines
307 B
C++
18 lines
307 B
C++
//
|
|
// Created by dongl on 23-4-15.
|
|
//
|
|
|
|
#include "core/Client.h"
|
|
#include "user/UserOperation.h"
|
|
|
|
int main() {
|
|
Client* client = new Client("127.0.0.1", 9999);
|
|
client->run();
|
|
printf("client: %p\n", client);
|
|
|
|
auto user = new UserOperation(client);
|
|
user->login("783556037", "Aa316216");
|
|
}
|
|
|
|
|