This commit is contained in:
hackerESQ
2024-08-24 22:19:40 -05:00
parent 5e89e66e7b
commit 54cf25aabc
13 changed files with 423 additions and 179 deletions
+10 -1
View File
@@ -11,7 +11,16 @@ class AppServiceProvider extends ServiceProvider
*/
public function register(): void
{
//
$market_data = config(
"market_data." .
config('market_data.default', 'yahoo')
);
$this->app->bind(
\App\Interfaces\MarketData\MarketDataInterface::class,
$market_data
);
}
/**