2019-09-06 23:53:10 +08:00

8 lines
158 B
PHP
Executable File

<?php
Interface LtStore
{
public function add($key, $value);
public function del($key);
public function get($key);
public function update($key, $value);
}