mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 19:55:05 +02:00
20 lines
520 B
PHP
20 lines
520 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Constants\Config;
|
|
|
|
/**
|
|
* Class ServiceConstants.
|
|
*/
|
|
class ServiceConstants
|
|
{
|
|
final public const ADMIN_DISCORD_CHANNEL_QUALIFIED = 'services.discord.admin_discord_channel';
|
|
|
|
final public const DB_UPDATES_DISCORD_CHANNEL_QUALIFIED = 'services.discord.db_updates_discord_channel';
|
|
|
|
final public const SUBMISSIONS_DISCORD_CHANNEL_QUALIFIED = 'services.discord.submissions_discord_channel';
|
|
|
|
final public const OPENAI_BEARER_TOKEN = 'services.openai.token';
|
|
}
|