mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-31 16:05:30 +08:00
21 lines
393 B
C++
21 lines
393 B
C++
#include "Options.h"
|
|
#include "Env.h"
|
|
#include "DBMetaImpl.h"
|
|
|
|
namespace zilliz {
|
|
namespace vecwise {
|
|
namespace engine {
|
|
|
|
Options::Options()
|
|
: env(Env::Default()) {
|
|
}
|
|
|
|
/* DBMetaOptions::DBMetaOptions(const std::string& dbpath, */
|
|
/* const std::string& uri) */
|
|
/* : path(dbpath), backend_uri(uri) { */
|
|
/* } */
|
|
|
|
} // namespace engine
|
|
} // namespace vecwise
|
|
} // namespace zilliz
|