created directory ./include/
This commit is contained in:
12
src/cli/ClientCLI/ClientCLI.h
Normal file
12
src/cli/ClientCLI/ClientCLI.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
#include "tcp-chat/client.h"
|
||||
#include "db/idb.h"
|
||||
|
||||
typedef struct ClientCLI {
|
||||
Client* client;
|
||||
IncrementalDB* user_db;
|
||||
} ClientCLI;
|
||||
|
||||
void ClientCLI_construct(ClientCLI* self);
|
||||
void ClientCLI_destroy(ClientCLI* self);
|
||||
Result(void) ClientCLI_run(ClientCLI* self);
|
||||
Reference in New Issue
Block a user