Skip to content
Snippets Groups Projects
Select Git revision
  • 913426af1afccb7796e56a36efc46de134d87df0
  • main default
  • frederik
  • Sondre
4 results

bane.h

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    cart.py 197 B
    from main import mysql, jsonify
    
    def get_cart():
        cur = mysql.connection.cursor()
        cur.execute('') # TODO Add SQL query here
        data = cur.fetchall()
        cur.close()
        return jsonify(data)