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