mirror of
https://github.com/coollabsio/coolify.git
synced 2026-08-28 10:05:25 -05:00
9 lines
126 B
PHP
9 lines
126 B
PHP
<?php
|
|
|
|
namespace App\Notifications\Channels;
|
|
|
|
interface SendsPushover
|
|
{
|
|
public function routeNotificationForPushover();
|
|
}
|