Skip to content

Instantly share code, notes, and snippets.

@adamweeks
Created November 28, 2015 23:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamweeks/d824730ba24af66dead3 to your computer and use it in GitHub Desktop.
Save adamweeks/d824730ba24af66dead3 to your computer and use it in GitHub Desktop.
import angular from 'angular';
import BlackjackCard from './card.directive';
import CardService from './card.service';
import BlackjackHand from './card.hand.directive';
let cardModule = angular.module('blackjack.card', []);
cardModule
.directive('blackjackCard', BlackjackCard)
.factory('CardService', CardService)
.directive('blackjackHand', BlackjackHand);
export default cardModule;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment