VendorModel.py 197 B

12345678910
  1. """
  2. All vendor models must extend this class.
  3. """
  4. class VendorModel:
  5. def get_src2month(self):
  6. raise NotImplementedError
  7. def get_vendor_dir(self):
  8. raise NotImplementedError