sunlight.py 333 B

1234567891011
  1. from db0mb3r.services.service import Service
  2. class Sunlight(Service):
  3. async def run(self):
  4. await self.options("https://api.sunlight.net/v3/customers/authorization/")
  5. await self.post(
  6. "https://api.sunlight.net/v3/customers/authorization/",
  7. data={"phone": self.formatted_phone},
  8. )