aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Search/IInAppSearch.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/Search/IInAppSearch.php')
-rw-r--r--lib/public/Search/IInAppSearch.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/public/Search/IInAppSearch.php b/lib/public/Search/IInAppSearch.php
new file mode 100644
index 00000000000..1baccb70d1e
--- /dev/null
+++ b/lib/public/Search/IInAppSearch.php
@@ -0,0 +1,16 @@
+<?php
+
+declare(strict_types=1);
+/**
+ * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+namespace OCP\Search;
+
+/**
+ * Interface for search providers supporting in-app search
+ *
+ * @since 28.0.0
+ */
+interface IInAppSearch extends IProvider {
+}