mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 07:20:09 +00:00
a47e3225e5
Co-authored-by: Sven van Ginkel <svenvanginkel@icloud.com> Co-authored-by: Alex Justesen <1144087+alexjustesen@users.noreply.github.com>
15 lines
246 B
PHP
15 lines
246 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'telegram-bot-api' => [
|
|
'token' => env('TELEGRAM_BOT_TOKEN'),
|
|
],
|
|
|
|
'unifi-api' => [
|
|
'base_url' => env('UNIFI_API_BASE_URL', 'https://192.168.1.1'),
|
|
'token' => env('UNIFI_API_TOKEN'),
|
|
],
|
|
|
|
];
|