1
1
mirror of https://github.com/renbaoshuo/S2OJ.git synced 2025-02-01 03:10:00 +00:00
S2OJ/web/app/models/DBUseLocalCache.php

10 lines
102 B
PHP
Raw Normal View History

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