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