Added webserver, parse args, A1066

This commit is contained in:
2023-03-22 06:45:51 +05:00
parent dc9a742471
commit 4f74b0a1b8
9 changed files with 272 additions and 68 deletions

15
inc/colors.hpp Normal file
View File

@ -0,0 +1,15 @@
#ifndef BIT_COLORS_HPP
#define BIT_COLORS_HPP
#define RESET "\033[0m"
#define BLACK "\033[30m"
#define RED "\033[31m"
#define GREEN "\033[32m"
#define YELLOW "\033[33m"
#define BLUE "\033[34m"
#define MAGENTA "\033[35m"
#define CYAN "\033[36m"
#define WHITE "\033[37m"
#define BOLD "\033[1m"
#endif //BIT_COLORS_HPP