mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-08 17:28:41 +00:00
10 lines
102 B
PHP
10 lines
102 B
PHP
<?php
|
|
|
|
class DBUseLocalCache {
|
|
public $str;
|
|
|
|
function __construct($str) {
|
|
$this->str = $str;
|
|
}
|
|
}
|