2024-04-27 05:45:44 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
// import "git.sangeeth.dev/gobyexample/runes"
|
2024-04-27 06:07:29 +00:00
|
|
|
// import "git.sangeeth.dev/gobyexample/structs"
|
2024-04-27 09:36:29 +00:00
|
|
|
// import "git.sangeeth.dev/gobyexample/generics"
|
2024-04-27 09:44:51 +00:00
|
|
|
// import "git.sangeeth.dev/gobyexample/errors"
|
2024-04-27 09:50:18 +00:00
|
|
|
// import "git.sangeeth.dev/gobyexample/goroutines"
|
2024-04-28 10:03:42 +00:00
|
|
|
// import "git.sangeeth.dev/gobyexample/channels"
|
2024-04-28 10:12:22 +00:00
|
|
|
// import "git.sangeeth.dev/gobyexample/cselect"
|
2024-04-28 10:44:14 +00:00
|
|
|
// import "git.sangeeth.dev/gobyexample/timeouts"
|
2024-04-28 11:15:17 +00:00
|
|
|
// import "git.sangeeth.dev/gobyexample/selectdefault"
|
2024-04-29 00:45:06 +00:00
|
|
|
// import "git.sangeeth.dev/gobyexample/closingchannels"
|
2024-04-29 00:55:37 +00:00
|
|
|
// import "git.sangeeth.dev/gobyexample/timers"
|
2024-04-29 02:04:27 +00:00
|
|
|
// import "git.sangeeth.dev/gobyexample/tickers"
|
2024-04-29 02:17:21 +00:00
|
|
|
// import "git.sangeeth.dev/gobyexample/workerpools"
|
2024-04-29 15:09:37 +00:00
|
|
|
// import "git.sangeeth.dev/gobyexample/waitgroups"
|
2024-05-01 10:31:47 +00:00
|
|
|
// import "git.sangeeth.dev/gobyexample/ratelimiting"
|
2024-05-01 10:39:07 +00:00
|
|
|
// import "git.sangeeth.dev/gobyexample/atomics"
|
2024-05-01 12:02:24 +00:00
|
|
|
// import "git.sangeeth.dev/gobyexample/mutex"
|
|
|
|
import "git.sangeeth.dev/gobyexample/statefulgoroutines"
|
2024-04-27 05:45:44 +00:00
|
|
|
|
|
|
|
func main() {
|
|
|
|
// runes.Runes()
|
2024-04-27 06:07:29 +00:00
|
|
|
// structs.Structs()
|
2024-04-27 09:36:29 +00:00
|
|
|
// generics.Generics()
|
2024-04-27 09:44:51 +00:00
|
|
|
// errors.Errors()
|
2024-04-27 09:50:18 +00:00
|
|
|
// goroutines.Goroutines()
|
2024-04-28 10:03:42 +00:00
|
|
|
// channels.Channels()
|
2024-04-28 10:12:22 +00:00
|
|
|
// cselect.Select()
|
2024-04-28 10:44:14 +00:00
|
|
|
// timeouts.Timeouts()
|
2024-04-28 11:15:17 +00:00
|
|
|
// selectdefault.SelectDefault()
|
2024-04-29 00:45:06 +00:00
|
|
|
// closingchannels.ClosingChannels()
|
2024-04-29 00:55:37 +00:00
|
|
|
// timers.Timers()
|
2024-04-29 02:04:27 +00:00
|
|
|
// tickers.Tickers()
|
2024-04-29 02:17:21 +00:00
|
|
|
// workerpools.WorkerPools()
|
2024-04-29 15:09:37 +00:00
|
|
|
// waitgroups.WaitGroups()
|
2024-05-01 10:31:47 +00:00
|
|
|
// ratelimiting.RateLimiting()
|
2024-05-01 10:39:07 +00:00
|
|
|
// atomics.Atomics()
|
2024-05-01 12:02:24 +00:00
|
|
|
// mutex.Mutex()
|
|
|
|
statefulgoroutines.StatefulGoroutines()
|
2024-04-27 05:45:44 +00:00
|
|
|
}
|