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.
|
|
|
from entity.Letter import Letter
|
|
|
|
|
|
|
|
def getLetter():
|
|
|
|
# 阻塞自身 从指定端口获取信件
|
|
|
|
#
|
|
|
|
# 解析信件
|
|
|
|
letter = None
|
|
|
|
handleLetter(letter)
|
|
|
|
pass
|
|
|
|
|
|
|
|
def handleLetter(letter:Letter):
|
|
|
|
pass
|