create StartableInterface

This commit is contained in:
2026-05-31 17:24:22 -04:00
parent 91c8534554
commit 7b7e40036d
@@ -0,0 +1,10 @@
<?php
declare(strict_types=1);
namespace Potter\Contract\Startable;
interface StartableInterface
{
public function start(): void;
}