mirror of
https://github.com/shlinkio/shlink.git
synced 2026-02-28 12:13:13 +08:00
13 lines
193 B
PHP
13 lines
193 B
PHP
<?php
|
|
|
|
namespace Shlinkio\Shlink\CLI\GeoLite;
|
|
|
|
enum GeolocationResult
|
|
{
|
|
case CHECK_SKIPPED;
|
|
case LICENSE_MISSING;
|
|
case DB_CREATED;
|
|
case DB_UPDATED;
|
|
case DB_IS_UP_TO_DATE;
|
|
}
|