edit delete schemas

This commit is contained in:
2026-01-08 18:13:17 +02:00
parent 25ad3fefab
commit 9dcc6b4e12
21 changed files with 317 additions and 107 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php namespace Lucent\Core\Channel;
use Lucent\Core\Data\Channel;
class ChannelModule
{
public static function get(): Channel
{
$appUrl = rtrim(config("lucent.url") ?? "", "/");
return new Channel(url: $appUrl, lucentUrl: $appUrl . "/lucent");
}
}