import CategoryController from './CategoryController'
import ProductController from './ProductController'
import Management from './Management'
import VehicleController from './VehicleController'
import BlogArticleController from './BlogArticleController'
import OrderLookupController from './OrderLookupController'

const V1 = {
    CategoryController: Object.assign(CategoryController, CategoryController),
    ProductController: Object.assign(ProductController, ProductController),
    Management: Object.assign(Management, Management),
    VehicleController: Object.assign(VehicleController, VehicleController),
    BlogArticleController: Object.assign(BlogArticleController, BlogArticleController),
    OrderLookupController: Object.assign(OrderLookupController, OrderLookupController),
}

export default V1