You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
namespace app\adminapi\controller\v1;
|
|
|
|
use app\BaseController;
|
|
|
|
use app\common\lib\Vcard;
|
|
|
|
class Index extends BaseController
|
|
{
|
|
public function index()
|
|
{
|
|
return 'Admin Index';
|
|
}
|
|
|
|
public function test(){
|
|
Vcard::genVcf('mc638ac4d74c7e6');
|
|
}
|
|
}
|