1 Star 0 Fork 0

cobrass/game

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.py 584 Bytes
一键复制 编辑 原始数据 按行查看 历史
cobrass 提交于 2024-08-05 19:20 . test
import sys
#sys.path.append('d:/dev/game')
import module1
import module2
from utils.helper import print_message
import logging
from logging_config import setup_logging
from db_operations import create_connenction,test_pool
def main():
setup_logging()
#set_logging()
logger=logging.getLogger(__name__)
logger.info("Application started")
test_pool()
name="Alice"
greeting=module1.greet(name)
print_message(greeting)
farewell_message=module2.farewell(name)
print_message(farewell_message)
if __name__=="__main__":
main()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/cobrass/game.git
git@gitee.com:cobrass/game.git
cobrass
game
game
master

搜索帮助