benfluleck/HelloBooks

View on GitHub
server/src/controllers/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import User from './user';
import Books from './books';
import UserBooks from './userBooks';
import Category from './category';
import Notifications from './notifications';

export default {
  User,
  Books,
  UserBooks,
  Category,
  Notifications
};