You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
462 B
13 lines
462 B
|
6 days ago
|
# -*- coding: utf-8 -*-
|
||
|
|
"""票 12 bruno-sync:读团队/客户 Tab 既有 .bru 作格式模板。"""
|
||
|
|
import io
|
||
|
|
import sys
|
||
|
|
from pathlib import Path
|
||
|
|
|
||
|
|
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
|
||
|
|
|
||
|
|
base = Path('D:/code/crm-api-docs/商机模块/商机详情')
|
||
|
|
for rel in ['团队/folder.bru', '团队/批量添加团队成员.bru', '团队/编辑团队成员.bru']:
|
||
|
|
print('=' * 20, rel)
|
||
|
|
print((base / rel).read_text(encoding='utf-8'))
|