mirror of
https://github.com/foomo/keel.git
synced 2025-10-16 12:35:34 +00:00
14 lines
107 B
Go
14 lines
107 B
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
go server()
|
|
|
|
go client()
|
|
|
|
time.Sleep(time.Second * 5)
|
|
}
|