API endpoint(s) that are only enabled if ee is enabled. These live under /api/ee/billing/. We don't feature flag this endpoint unlike other ee endpoints.

(ns metabase-enterprise.billing.api.routes
  (:require
   [metabase-enterprise.billing.api]
   [metabase.api.macros :as api.macros]
   [metabase.api.routes.common :refer [+auth]]))
(comment metabase-enterprise.billing.api/keep-me)

Ring routes for /api/ee/billing API endpoints.

(def ^{:arglists '([request respond raise])} routes
  (+auth (api.macros/ns-handler 'metabase-enterprise.billing.api)))