import WebhookController from './WebhookController'
import HomeController from './HomeController'
import OpenBidsController from './OpenBidsController'
import HowToPlayController from './HowToPlayController'
import AboutController from './AboutController'
import TermsController from './TermsController'
import AuctionController from './AuctionController'
import AuctionTimelineController from './AuctionTimelineController'
import SearchController from './SearchController'
import TrendingController from './TrendingController'
import Auth from './Auth'
import WinnersController from './WinnersController'
import LeaderboardController from './LeaderboardController'
import RecommendedController from './RecommendedController'
import EventItemsController from './EventItemsController'
import OnboardingController from './OnboardingController'
import WalletController from './WalletController'
import TaskCenterController from './TaskCenterController'
import CheckinController from './CheckinController'
import ProfileController from './ProfileController'
import Settings from './Settings'
import NotificationController from './NotificationController'
import AuctionReviewController from './AuctionReviewController'
import SpinController from './SpinController'
import RewardClaimController from './RewardClaimController'
import Admin from './Admin'
import BidController from './BidController'
import Support from './Support'

const Controllers = {
    WebhookController: Object.assign(WebhookController, WebhookController),
    HomeController: Object.assign(HomeController, HomeController),
    OpenBidsController: Object.assign(OpenBidsController, OpenBidsController),
    HowToPlayController: Object.assign(HowToPlayController, HowToPlayController),
    AboutController: Object.assign(AboutController, AboutController),
    TermsController: Object.assign(TermsController, TermsController),
    AuctionController: Object.assign(AuctionController, AuctionController),
    AuctionTimelineController: Object.assign(AuctionTimelineController, AuctionTimelineController),
    SearchController: Object.assign(SearchController, SearchController),
    TrendingController: Object.assign(TrendingController, TrendingController),
    Auth: Object.assign(Auth, Auth),
    WinnersController: Object.assign(WinnersController, WinnersController),
    LeaderboardController: Object.assign(LeaderboardController, LeaderboardController),
    RecommendedController: Object.assign(RecommendedController, RecommendedController),
    EventItemsController: Object.assign(EventItemsController, EventItemsController),
    OnboardingController: Object.assign(OnboardingController, OnboardingController),
    WalletController: Object.assign(WalletController, WalletController),
    TaskCenterController: Object.assign(TaskCenterController, TaskCenterController),
    CheckinController: Object.assign(CheckinController, CheckinController),
    ProfileController: Object.assign(ProfileController, ProfileController),
    Settings: Object.assign(Settings, Settings),
    NotificationController: Object.assign(NotificationController, NotificationController),
    AuctionReviewController: Object.assign(AuctionReviewController, AuctionReviewController),
    SpinController: Object.assign(SpinController, SpinController),
    RewardClaimController: Object.assign(RewardClaimController, RewardClaimController),
    Admin: Object.assign(Admin, Admin),
    BidController: Object.assign(BidController, BidController),
    Support: Object.assign(Support, Support),
}

export default Controllers