Add GeoConstant class with driving mode constant

This commit is contained in:
Tiavina 2025-04-01 10:58:06 +03:00
parent 452e363877
commit 6523aff9ba

View File

@ -0,0 +1,8 @@
<?php
declare(strict_types=1);
namespace OCA\Gestion\Constants;
abstract class GeoConstant
{
const DRIVING_MODE = "drive";
}