添加协程结构

This commit is contained in:
2025-08-13 07:11:17 +08:00
parent eb5a502d67
commit fda6593f80
4 changed files with 83 additions and 2 deletions

11
model/routine/model.go Normal file
View File

@@ -0,0 +1,11 @@
package routine
type Task struct {
Id string
Content string
}
type Data struct {
Count int
Record map[int]int
}