Feature: Creating Skeleton for import command, interfaces, shopify importer

This commit is contained in:
2026-07-06 03:42:24 +03:00
parent 677b240a8d
commit cd9632a6bf
7 changed files with 147 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
<?php
namespace Modules\Core\MigrateImport;
interface Importer
{
public function import(ImportSpec $spec): void;
}