application.cpp 415 B

123456789101112
  1. #include "coconut/application.hpp"
  2. #include <spdlog/spdlog.h>
  3. #include <args.hxx>
  4. #include <grpcpp/grpcpp.h>
  5. #include <google/protobuf/stubs/common.h>
  6. #include <lua.hpp>
  7. coconut::Application::Application(int argc, char** argv) {
  8. spdlog::info("grpc({}), protobuf({}), {}", grpc::Version(), google::protobuf::internal::VersionString(GOOGLE_PROTOBUF_VERSION), LUA_RELEASE);
  9. spdlog::info("hello coconut!");
  10. }