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