mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 09:39:10 +08:00
15 lines
155 B
PHP
15 lines
155 B
PHP
<?php
|
|
|
|
namespace Library;
|
|
|
|
|
|
class V2ray
|
|
{
|
|
protected $config;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->config = new \StdClass();
|
|
}
|
|
}
|