gemini-server/main.cpp

12 lines
283 B
C++
Raw Normal View History

2021-01-07 21:01:47 +01:00
#include <iostream>
#include <spdlog/sinks/stdout_color_sinks.h>
#include <spdlog/spdlog.h>
2021-01-07 21:01:47 +01:00
int main() {
// Create logger
auto logger = spdlog::stdout_color_st("single_log");
spdlog::set_default_logger(logger);
2021-01-07 21:01:47 +01:00
std::cout << "Hello, World!" << std::endl;
return EXIT_SUCCESS;
}