mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-17 20:49:32 +00:00
10 lines
131 B
PHP
10 lines
131 B
PHP
<?php
|
|
|
|
namespace App\Notifications\Channels;
|
|
|
|
interface SendsTelegram
|
|
{
|
|
public function routeNotificationForTelegram();
|
|
|
|
}
|