mirror of
https://github.com/pelican-dev/panel.git
synced 2025-12-08 17:30:18 +01:00
10 lines
156 B
PHP
10 lines
156 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum CustomRenderHooks: string
|
|
{
|
|
case FooterStart = 'pelican::footer.start';
|
|
case FooterEnd = 'pelican::footer.end';
|
|
}
|