awesome-patterns/concurrency/subtasks/main.go

9 lines
170 B
Go
Raw Normal View History

2018-01-05 08:26:58 +03:00
package main
2018-01-06 08:55:04 +03:00
import "github.com/jianhan/go-patterns/concurrency/subtasks/fetchers"
2018-01-05 08:26:58 +03:00
func main() {
2018-01-06 08:55:04 +03:00
// divide_and_conquer.RunDivideAndConquer()
fetchers.RunFetchers()
2018-01-05 08:26:58 +03:00
}