Skip to content

Commit

Permalink
add adress model
Browse files Browse the repository at this point in the history
  • Loading branch information
William MURA authored and William MURA committed Nov 5, 2014
1 parent a8fce92 commit 600c882
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion webserver/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
Base = declarative_base()

# Export Models
__all__ = ['Country', 'Personne', 'Entrepreneur', 'Livreur', 'LineOrder', 'Order', 'StateOrder', 'Menu', 'Client', 'Restaurateur', 'Restaurant', 'Dish']
__all__ = ['Address', 'Country', 'Personne', 'Entrepreneur', 'Livreur', 'LineOrder', 'Order', 'StateOrder', 'Menu', 'Client', 'Restaurateur', 'Restaurant', 'Dish']

from webserver.models.address import Address
from webserver.models.personne import Personne
from webserver.models.client import Client
from webserver.models.country import Country
Expand Down

0 comments on commit 600c882

Please sign in to comment.