easypay.py 289 B

123456789101112
  1. from db0mb3r.services.service import Service
  2. class EasyPay(Service):
  3. phone_codes = [380]
  4. async def run(self):
  5. await self.post(
  6. "https://api.easypay.ua/api/auth/register",
  7. json={"phone": self.formatted_phone, "password": self.password},
  8. )