api.py 289 B

1234567891011121314
  1. # -*- coding: utf-8 -*-
  2. import sys
  3. class Buffer:
  4. def __init__(self,
  5. paths = [],
  6. storesize = 0,
  7. comment = b''):
  8. self.paths = paths
  9. self.pfbs = 0
  10. self.storesize = int(storesize)
  11. self.comment = comment