mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-01-15 16:21:14 +01:00
15 lines
284 B
PHP
15 lines
284 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Xentral\Modules\GoogleApi;
|
||
|
|
||
|
final class GoogleScope
|
||
|
{
|
||
|
/** @var string CALENDAR */
|
||
|
public const CALENDAR = 'https://www.googleapis.com/auth/calendar';
|
||
|
|
||
|
/** @var string MAIL */
|
||
|
public const MAIL = 'https://mail.google.com/';
|
||
|
}
|