diff --git a/litecord/blueprints/store.py b/litecord/blueprints/store.py index 68fb389..27a22a7 100644 --- a/litecord/blueprints/store.py +++ b/litecord/blueprints/store.py @@ -18,7 +18,6 @@ along with this program. If not, see . """ from quart import Blueprint, jsonify -from pathlib import Path bp = Blueprint("store", __name__) diff --git a/litecord/blueprints/user/billing.py b/litecord/blueprints/user/billing.py index 3ff1334..1d6fd0e 100644 --- a/litecord/blueprints/user/billing.py +++ b/litecord/blueprints/user/billing.py @@ -484,3 +484,13 @@ async def _patch_subscription(subscription_id): @bp.route("/@me/billing/country-code", methods=["GET"]) async def _get_billing_country_code(): return {"country_code": "US"} + + +@bp.route("/@me/billing/stripe/setup-intents", methods=["POST"]) +async def _stripe_setup_intents(): + return {"client_secret": "gbawls"} + + +@bp.route("/@me/billing/payment-sources/validate-billing-address", methods=["POST"]) +async def _validate_billing_address(): + return {"token": "gbawls"}