Your IP : 216.73.216.68


Current Path : /home/jeromecohp/www/plugins/system/yooessentials/modules/api/
Upload File :
Current File : /home/jeromecohp/www/plugins/system/yooessentials/modules/api/bootstrap.php

<?php
/**
 * @package   Essentials YOOtheme Pro (Freemium) 2.0.19 build 1026.0920
 * @author    ZOOlanders https://www.zoolanders.com
 * @copyright Copyright (C) Joolanders, SL
 * @license   http://www.gnu.org/licenses/gpl.html GNU/GPL
 */

namespace ZOOlanders\YOOessentials\Api;

use ZOOlanders\YOOessentials\Api\Facebook\FacebookApi;
use ZOOlanders\YOOessentials\Api\Facebook\FacebookApiInterface;
use ZOOlanders\YOOessentials\Api\Google\GoogleSheetApi;
use ZOOlanders\YOOessentials\Api\Google\GoogleSheetApiInterface;
use ZOOlanders\YOOessentials\Api\Google\GoogleDriveApi;
use ZOOlanders\YOOessentials\Api\Google\GoogleDriveApiInterface;
use ZOOlanders\YOOessentials\Api\Google\GoogleBusinessProfileApi;
use ZOOlanders\YOOessentials\Api\Google\GoogleBusinessProfileApiInterface;
use ZOOlanders\YOOessentials\Api\Google\YouTubeApi;
use ZOOlanders\YOOessentials\Api\Google\YouTubeApiInterface;
use ZOOlanders\YOOessentials\Api\MaxMind\GeoIp;
use ZOOlanders\YOOessentials\Api\Twitter\TwitterApi;
use ZOOlanders\YOOessentials\Api\Twitter\TwitterApiInterface;

return [
    'services' => [
        GoogleSheetApiInterface::class => GoogleSheetApi::class,

        GoogleDriveApiInterface::class => GoogleDriveApi::class,

        GoogleBusinessProfileApiInterface::class => GoogleBusinessProfileApi::class,

        YouTubeApiInterface::class => YouTubeApi::class,

        TwitterApiInterface::class => TwitterApi::class,

        FacebookApiInterface::class => FacebookApi::class,

        GeoIp::class => '',
    ],
];