nagasurendra commited on
Commit
feb9c12
·
verified ·
1 Parent(s): 44b1ed4

Create cart.py

Browse files
Files changed (1) hide show
  1. cart.py +4 -0
cart.py ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ from flask import Blueprint, render_template, request, session
2
+ import random
3
+
4
+ cart_blueprint = Blueprint('cart', __name__)