diff --git a/cpp/src/license/License.cpp b/cpp/src/license/License.cpp deleted file mode 100644 index cad684bc10..0000000000 --- a/cpp/src/license/License.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include "License.h" - -namespace zilliz { -namespace vecwise { -namespace server { - -ServerError -LicenseValidate(const std::string& path) { - return SERVER_SUCCESS; -} - -} -} -} \ No newline at end of file diff --git a/cpp/src/license/License.h b/cpp/src/license/License.h deleted file mode 100644 index cf4888b07b..0000000000 --- a/cpp/src/license/License.h +++ /dev/null @@ -1,16 +0,0 @@ -#pragma once - -#include "utils/Error.h" - -namespace zilliz { -namespace vecwise { -namespace server { - -ServerError -LicenseValidate(const std::string& path); - -} -} -} - -