adding logs

This commit is contained in:
Kbz-8
2024-01-21 10:01:32 +01:00
parent d9d6bb3a8c
commit 4374f826ea
6 changed files with 138 additions and 10 deletions

29
includes/server.hpp Normal file
View File

@@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* server.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/21 09:12:28 by maldavid #+# #+# */
/* Updated: 2024/01/21 09:14:20 by maldavid ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef __SERVER_IRC__
#define __SERVER_IRC__
namespace irc
{
class Server
{
public:
Server();
~Server();
private:
};
}
#endif