Minimal C++ project demonstrating a console-based URL shortening service.
mkdir build
cd build
cmake ..
cmake --build .Execute URLShortener (or URLShortener.exe on Windows). Use the
following commands:
shorten <long_url>resolve <code>quit
Example:
> shorten https://example.com
Short code: abc123
> resolve abc123
https://example.com
> quit