1
0
mirror of https://github.com/nextcloud/ocsms.git synced 2026-08-11 16:32:55 +00:00

Add a basic FTS provider, for the future

This commit is contained in:
Loïc Blot
2018-12-10 13:57:39 +01:00
parent 1e7efa8e9e
commit b7d929f425
2 changed files with 12 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
<?php
namespace OCA\YourNameSpace\Provider;
use OCA\FullTextSearch\IFullTextSearchProvider;
class MyProvider implements IFullTextSearchProvider {
};
?>