aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Daemon/Cli_suggest.php
blob: 028228cb09a68448a62795a079faa9bb42056d3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php /** @file */

namespace Zotlabs\Daemon;

require_once('include/socgraph.php');

class Cli_suggest {

	static public function run($argc,$argv) {

		update_suggestions();
		return;

	}
}