5 lines
78 B
Python
5 lines
78 B
Python
from .cart import Cart
|
|
|
|
def cart(request):
|
|
return {'cart': Cart(request)}
|