| 123456789101112 |
- #include "coconut/application.hpp"
- #include <spdlog/spdlog.h>
- #include <args.hxx>
- #include <grpcpp/grpcpp.h>
- #include <google/protobuf/stubs/common.h>
- #include <lua.hpp>
- coconut::Application::Application(int argc, char** argv) {
- spdlog::info("grpc({}), protobuf({}), {}", grpc::Version(), google::protobuf::internal::VersionString(GOOGLE_PROTOBUF_VERSION), LUA_RELEASE);
- spdlog::info("hello coconut!");
- }
|