1
0
Fork 0

初始化 Go 和 Python 项目的基本文件结构

This commit is contained in:
IvisTang 2025-12-08 23:04:23 +08:00
parent 1fec6cec7e
commit 76e8275edd
4 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1 @@
package main

3
go/go.mod Normal file
View File

@ -0,0 +1,3 @@
module ivistang.tech/design-patterns
go 1.25.0

1
python/.python-version Normal file
View File

@ -0,0 +1 @@
3.13

7
python/pyproject.toml Normal file
View File

@ -0,0 +1,7 @@
[project]
name = "design-patterns"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = []