add postgresql and custom downloader

This commit is contained in:
crazywhalecc
2023-04-09 12:11:14 +08:00
parent 9970986a52
commit 76e95b8c55
8 changed files with 122 additions and 5 deletions

View File

@@ -0,0 +1,12 @@
<?php
declare(strict_types=1);
namespace SPC\store\source;
abstract class CustomSourceBase
{
public const NAME = 'unknown';
abstract public function fetch();
}