(function() {
  window.App = {
    Views: {},
    Controllers: {},
    Collections: {},
    Models: {},
    initialize: function() {
      return this.controller = new App.Controllers.Zaphra();
    }
  };
  $(document).ready(function() {
    return App.initialize();
  });
}).call(this);

