#pragma once #include "DI/factory.hpp" #include template struct is_factory : public std::false_type // NOLINT(readability-identifier-naming) { }; template struct is_factory> : public std::true_type { }; template inline constexpr bool is_factory_v = is_factory::value;