S2OJ/web/app/models/DBUseLocalCache.php

10 lines
102 B
PHP
Raw Normal View History

2022-11-06 02:26:21 +00:00
<?php
class DBUseLocalCache {
public $str;
function __construct($str) {
$this->str = $str;
}
}