milvus/cpp/src/config/ConfigMgr.cpp
starlord a7a74320c2 refine code
Former-commit-id: 468d643e8b73d0476a6268e5db50039811e8cd4e
2019-08-27 13:47:27 +08:00

21 lines
556 B
C++

/*******************************************************************************
* Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved
* Unauthorized copying of this file, via any medium is strictly prohibited.
* Proprietary and confidential.
******************************************************************************/
#include "ConfigMgr.h"
#include "YamlConfigMgr.h"
namespace zilliz {
namespace milvus {
namespace server {
ConfigMgr * ConfigMgr::GetInstance() {
static YamlConfigMgr mgr;
return &mgr;
}
}
}
}