milvus/cpp/src/config/IConfigMgr.cpp
groot 66f330967e add server code
Former-commit-id: 33aeca704be0e7e80f1e45bb1dc11d1aafd4f4f3
2019-04-14 16:35:46 +08:00

21 lines
560 B
C++

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