初始化
This commit is contained in:
3
02_core_concepts/05_concurrency/01_goroutines/go.mod
Normal file
3
02_core_concepts/05_concurrency/01_goroutines/go.mod
Normal file
@@ -0,0 +1,3 @@
|
||||
module goroutines
|
||||
|
||||
go 1.21
|
5
02_core_concepts/05_concurrency/01_goroutines/main.go
Normal file
5
02_core_concepts/05_concurrency/01_goroutines/main.go
Normal file
@@ -0,0 +1,5 @@
|
||||
package main
|
||||
|
||||
func main() {
|
||||
// TODO
|
||||
}
|
3
02_core_concepts/05_concurrency/02_channels/go.mod
Normal file
3
02_core_concepts/05_concurrency/02_channels/go.mod
Normal file
@@ -0,0 +1,3 @@
|
||||
module channels
|
||||
|
||||
go 1.21
|
5
02_core_concepts/05_concurrency/02_channels/main.go
Normal file
5
02_core_concepts/05_concurrency/02_channels/main.go
Normal file
@@ -0,0 +1,5 @@
|
||||
package main
|
||||
|
||||
func main() {
|
||||
// TODO
|
||||
}
|
3
02_core_concepts/05_concurrency/03_sync_pkg/go.mod
Normal file
3
02_core_concepts/05_concurrency/03_sync_pkg/go.mod
Normal file
@@ -0,0 +1,3 @@
|
||||
module sync_pkg
|
||||
|
||||
go 1.21
|
5
02_core_concepts/05_concurrency/03_sync_pkg/main.go
Normal file
5
02_core_concepts/05_concurrency/03_sync_pkg/main.go
Normal file
@@ -0,0 +1,5 @@
|
||||
package main
|
||||
|
||||
func main() {
|
||||
// TODO
|
||||
}
|
Reference in New Issue
Block a user