- #!/usr/bin/env python
- # -*- encoding: utf-8 -*-
- '''
- @Contact : liuyuqi.gov@msn.cn
- @Time : 2023/03/22 19:15:05
- @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
- @Desc : None
- '''
- from outlook_creator import OutlookRegister
- if __name__=='__main__':
- outlook_register = OutlookRegister()
- outlook_register.run()
|