milvus/cpp/src/server/VecServiceWrapper.h
groot 21e51ff638 refine code
Former-commit-id: aca348ba7691ed82df6f8fcae687b7015e6cf401
2019-04-16 18:45:52 +08:00

27 lines
597 B
C++

/*******************************************************************************
* Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved
* Unauthorized copying of this file, via any medium is strictly prohibited.
* Proprietary and confidential.
******************************************************************************/
#pragma once
#include "utils/Error.h"
#include <cstdint>
#include <string>
namespace zilliz {
namespace vecwise {
namespace server {
class VecServiceWrapper {
public:
static void StartService();
static void StopService();
};
}
}
}