Feature: Creating product import resolvers, wiring import job

This commit is contained in:
2026-07-09 00:37:14 +03:00
parent 825ce885c0
commit df03866285
16 changed files with 745 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace Modules\Core\MigrateImport;
use Lunar\Models\Language;
class DefaultLocale
{
public static function code(): string
{
return Language::getDefault()->code;
}
}