#include #include #include #include "JsonRepository.h" #include "SampleRepository.h" namespace kurator { namespace universe { std::shared_ptr load_json(const char* path) { return std::make_shared(path); } std::shared_ptr load_sample() { return std::make_shared(); } } // namespace universe } // namespace kurator