Files
kiri-core/kiri-engine/Abstracts/Provider.php
T

13 lines
126 B
PHP
Raw Normal View History

2022-01-09 03:50:38 +08:00
<?php
declare(strict_types=1);
namespace Kiri\Abstracts;
interface Provider
{
2023-11-30 17:02:21 +08:00
public function onImport();
2022-01-09 03:50:38 +08:00
}