protocol.py 247 B

123456789101112
  1. class protocol:
  2. @staticmethod
  3. def line_separator() -> str:
  4. return str("\n")
  5. @staticmethod
  6. def setter() -> str:
  7. return str("=")
  8. @staticmethod
  9. def section_buckles() -> [str, str]:
  10. return ("[", "]")