12345678910111213141516171819202122232425 |
- #!/usr/bin/env python
- # -*- encoding: utf-8 -*-
- '''
- @Contact : liuyuqi.gov@msn.cn
- @Time : 2022/10/30 19:48:21
- @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
- @Desc : client
- '''
- class Client(object):
- '''客户端'''
-
- def __init__(self):
- pass
- def connect(self):
- '''连接server'''
- pass
- def search(self):
- '''搜索本地 server'''
- pass
- if __name__ == "__main__":
- pass
|