client.py 463 B

12345678910111213141516171819202122232425
  1. #!/usr/bin/env python
  2. # -*- encoding: utf-8 -*-
  3. '''
  4. @Contact : liuyuqi.gov@msn.cn
  5. @Time : 2022/10/30 19:48:21
  6. @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
  7. @Desc : client
  8. '''
  9. class Client(object):
  10. '''客户端'''
  11. def __init__(self):
  12. pass
  13. def connect(self):
  14. '''连接server'''
  15. pass
  16. def search(self):
  17. '''搜索本地 server'''
  18. pass
  19. if __name__ == "__main__":
  20. pass