woj-server/pkg/pool/task.go

7 lines
60 B
Go
Raw Normal View History

2024-01-06 01:50:20 +08:00
package pool
type Task struct {
id int
f func() error
2024-01-06 01:50:20 +08:00
}