Проверка шаблона шины для iOS
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
262B

  1. from generation.isPipeRecent import *
  2. def fieldFormat(fmtPlain, fmtRecent, name, structure):
  3. fmt = fmtPlain
  4. if (
  5. isPipeRecent(name, structure.core) or
  6. isPipeRecent(name, structure.service)
  7. ):
  8. fmt = fmtRecent
  9. return fmt